Best unofficial Apache Server developers community |
|
I have a socket read timeoput in Tomcat web app accessing a remote web service. The timeout is exactly 10 minutes. I have trouble finding the configuration responsible for this. Is this some kind of default?
posted via StackOverflow
|
|
 
|
I found a link here: http://axis.apache.org/axis/java/client-side-axis.html#AxisProperties, it mentions CONNECTION_TIMEOUT_PROPERTY but does not specify any default on it. |
|
 
|
In your case timeouts might be set in Axis configuration. See Timeout Configuration. Or try to set your timeout programatically (Axis client options) |
|
 
|
It comes from DEFAULT_MESSAGE_TIMEOUT in org.apache.axis.Constants
used in org.apache.axis.MessageContext
So it seems a kind of default. |