Mobile app version of vmapp.org
Login or Join
Steve110

: Problem on application with ASP in IIS 7.5 with Oracle 11g We have an application developed with .Net on server 2008 R2 and IIS 7.5 which is linked liked to Oracle 11g on another server.

@Steve110

Posted in: #Asp #Iis7

We have an application developed with .Net on server 2008 R2 and IIS 7.5 which is linked liked to Oracle 11g on another server. Our problem is that we lose the service every two or three or more. The application stops and we have to restart IIS or the server to continue the job (the number of users is less then 50). We have no error message. Do you know anything to do to avoid this situation, something like:


A parameter to put on ASP pages
A parameter to switch on or off on the server or on the database

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Steve110

1 Comments

Sorted by latest first Latest Oldest Best

 

@Moriarity557

Few things to look at:


Recycle your app pools - set them to recycle based on x number of visits. Its probably a memory leak that is causing this.
Turn on application tracing. This will give you more detailed logs that will make it easier to diagnose your problem.
If your using ODBC to connect to oracle, make sure that you have ODBC connections configured correctly. You can set ODBC max connections to what makes sense for your app. If your ODBC connection runs out of memory then it will crash.
You can write a script to restart IIS every x hours. With IIS we find that we need to restart IIS daily / windows servers weekly. We use multiple IIS nodes behind a HaProxy server so that other iis servers take on the load during these brief restarts.
Make sure you are closing connections to the DB in your app. Read Data, copy to local varaibles, close connections. That goes for both .net and classic asp.


Your best friend here is IIS advanced logging and failed request tracing. It will give you a lot more detail on what is cooking versus IIS built in logs (which do nothing but take up space).

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme