0
votes

Need your help with an legacy ASP application hoisted on IIS 7. The application connects to oracle 10 and fetches data. If the rows exceed 500 then Internal Server 500 error is shown in the browser. How to overcome this ? Is there any logs I can check to fine out this error. Is there anything i need to do on timeout parameters.

Any pointers will be of great help.

Thanks a zillion.

1
Check this post for getting additional error information: stackoverflow.com/questions/1453791/…sgeddes
Also disable IE friendly error messages.Shadow Wizard Wearing Mask V2
If you are running IIS7 and want decent error messages, as well as disabling Friendly HTTP Error Messages, you need to go into IIS Manager, go to your website, in the ASP section go to: Compilation > Debugging Properties > Send Errors to Browser = True. This should make them a little more helpful:)Hank
Also > Default Web Site —> Click Error Pages properties and select Detail errorsHank

1 Answers

0
votes

If you have tried the methods above to see what kind of error you are getting and it is buffer related, then you need to increase the response buffer limit. in IIS 7, click on the website, click on ASP, click on limits properties, increase the response buffer limit and script time-out limit as well. Hope this helps.