I have an application that has been working reasonably well since the launch, but occassionally I see errors like the following.
- User invokes a makeRequest() call which fetches some JSON data from our server
- Before the data makes it all the way back to our system, we get an error.
The following is a copy of the meat of the error message (which is all HTML). I know this isn't ours because we're a LAMP based application, not Microsoft.
Runtime Error
Server Error in '/' Application.
Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>