2011-01-10 6 views

Antwort

3

Es kommt von DEFAULT_MESSAGE_TIMEOUT in org.apache.axis.Constants

/** 
* The default timeout for messages. 
* 
* @since Axis1.2 
*/ 
public static final int DEFAULT_MESSAGE_TIMEOUT=60*1000*10; 

verwendet in org.apache.axis.MessageContext

/** 
* Maximum amount of time to wait on a request, in milliseconds. 
*/ 
private int   timeout = Constants.DEFAULT_MESSAGE_TIMEOUT; 

So ist es eine Art von Standard scheint.

+0

Ich werde das überprüfen, danke! –

1

In Ihrem Fall Timeouts könnte in Achskonfiguration eingestellt werden. Siehe Timeout Configuration.

Oder versuchen Sie Ihr Timeout programmatisch zu setzen (Axis client options)

+2

Die von Ihnen geposteten Links sind für Axis2. Ich benutze Achse 1.4 –