Reputation: 41
I am sending a request to the tomcat server( version 7.0.32). While the server process the request, the browser loses the connection with server. I tried increasing the connectionTimeout value in server.xml to 80000 from 20000., but it still shows connection lost in browser after 5 minutes.
Do i need to make changes somewhere else or need to take care of anything else?
Upvotes: 0
Views: 956
Reputation: 65
Well,
First, make sure that it is the connection from the browser to the server that is losing connection and not possibly the server losing connection to one of it's resources. Having worked with Tomcat over and over again through the years, I know that sometimes it is difficult to determine the core issue of a problem from the error output in the Tomcat logs.
There are a few things to check in my experience. For browser-server connectivity:
And then, if it's an issue with losing connectivity with a particular resource:
Hope that helps. Let us know.
Upvotes: 2