Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Axis2 ServiceClient options ignore timeout

I am using Axis2 in version:

Implementation-Version: 1.7.0-SNAPSHOT
Implementation-Vendor-Id: org.apache.axis2
Implementation-Vendor: The Apache Software Foundation
Jenkins-Build-Number: 1847

I want to set the timeout of the ServiceClient to 2000 milliseconds, this is our code:

Options options = new Options();
options.setTo(new EndpointReference(getUserServiceEndPoint()));
options.setProperty(Constants.Configuration.ENABLE_REST,
        Constants.VALUE_TRUE);
// setting timeout to 2 second should be sufficient, if the server is
// not available within the 3 second interval you got a problem anyway
options.setTimeOutInMilliSeconds(2000);

ServiceClient sender = new ServiceClient();
sender.engageModule(new QName(Constants.MODULE_ADDRESSING)
        .getLocalPart());
sender.setOptions(options);
OMElement getSessionResult = sender
        .sendReceive(getPayloadMethodGetSession());

However I still see in the logs:

org.apache.axis2.AxisFault: The host did not accept the connection within timeout of 60000 ms

And it really takes also 60 seconds. So the error message is not just wrong, it seems like the timeout option is just ignored and it always uses the default one.

Anybody had a similar issue ?

Thanks
Sebastian

like image 814
seba.wagner Avatar asked Nov 23 '12 03:11

seba.wagner


2 Answers

I was able to resolve the issue (although it looks somehow duplicated to me)

int timeOutInMilliSeconds = 2000;
options.setTimeOutInMilliSeconds(timeOutInMilliSeconds);
options.setProperty(HTTPConstants.SO_TIMEOUT, timeOutInMilliSeconds);
options.setProperty(HTTPConstants.CONNECTION_TIMEOUT, timeOutInMilliSeconds);

Sebastian

like image 53
seba.wagner Avatar answered Oct 16 '22 14:10

seba.wagner


Per API doc of Axis2 1.6.3, it is either the two properties or the timeOutInMillis like :

Options options = new Options();
options.setProperty(HTTPConstants.SO_TIMEOUT, new Integer(timeOutInMilliSeconds));
options.setProperty(HTTPConstants.CONNECTION_TIMEOUT, new Integer(timeOutInMilliSeconds));

OR

options.setTimeOutInMilliSeconds(timeOutInMilliSeconds);

SOURCE: http://axis.apache.org/axis2/java/core/docs/http-transport.html

like image 1
user2651178 Avatar answered Oct 16 '22 15:10

user2651178