We are facing an issue in our production environment. We have our application (J2EE) deployed on Websphere Application Server(WAS 7). We have a report screen which takes one or more search criteria and based on that it generates a report. The issue we face here is that, for some search criteria, when the transaction time exactly reaches 1 minute, the java thread is lost and we get an exception which is not logged in any of the server logs. We tried simulating this for other reports screens as well and we inferred that whenever the java process thread reaches exactly 1 minute, we get an exception in the screen which is not logged in any of the logs.
The exception which we receive is a generic “Internal Server Error” exception(500 Error) and it has no other information in it. We used firebug and also printed the error in our jquery error handlers and at both the places we could see that the error we receive is a Generic Internal Server error.
So from our analysis we infer that the error is because of the java thread related issue and we could not figure out what exact setting or configuration(in the WAS admin console) should be modified to solve this issue.