Tech-Today
Server Application Unavailable on IIS
Server Application Unavailable on IIS is often caused by a misconfigured IIS virtual directory.
You can look at the event viewer of windows and you might find some clue, possibly you will see this error:
"It is not possible to run two different versions of ASP.NET in the same IIS process."
What you can do is to create a new application pool and point your website or virtual directory to that application pool.
How to create an application pool in Windows 7:
1.) Open IIS
2.) Right click Application Pool->Add Application Pool
3.) Enter a new
4.) Select theh .net framework then click Ok
5.) A new Application Pool is created
Assigning your website and virtual directory to the newly created Application Pool
1.) Select the website or virtual directory
2.) Click Basic Settings on the right side
3.) Change the Application Pool Setting
-
How To Monitor The Data Source Connections And Sql Queries In Jboss
To allow us to debug our jboss server for possible connection leaks, wrong sql queries normally we do 2 changes: 1.) In persistence.xml, set hibernate.show_sql to true 2.) In jboss's standalone.xml, we set the hibernate logger to DEBUG <logger...
-
How To Setup Your Datasource In Jboss7.x
Below are sample configurations you can use to setup postgresq, mysql data source in your jboss7.x. Where to add: 1.) If you added Jboss Tools plugin to eclipse, in server view expand Jboss Server->Filesets->Configuration->standalone.xml 2.)...
-
How To Create A Connection Pool For Postgresql On Glassfish 3.1.1
This tutorial assumes that 1.) You already have Glassfish 3.1.1 installed. https://blogs.oracle.com/java/entry/glassfish_3_1_1 2.) Create and start a Glassfish domain a.) asadmin create-domain czetsuya b.) asadmin start-domain czetsuya...
-
How To Deploy Mvc3 Powered Website To Iis
After developing a website powered by MVC3 the next thing is deploying it on server. Our assumption is that the server has dotnet3.5/4.0 installed. Server Setup: 1.) Windows 2003 SP2 2.) Download and install dotnet 3.5/4.0 3.) Download and install MVC3...
-
Could Not Load The Assembly 'app_web_xxx'. Make Sure That It Is Compiled Before Accessing The Page.
Recently I was deploying a module of a website on top of another virtual directory. Of course the simplest way is to make this directory as an IIS application, but that's the last option. What I did was to override the "base" web.config file and...
Tech-Today