• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Axis2 http Configuration problem

 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,

I've implemented a SOAP Web Services client using AXIS2-1.3 libraries and WSDL2JAVA. I've used the following configuration to reuse the httpclient and increase the timeout period to 120 seconds, but the connection still times out after the default value of 60 seconds. The other annoying problem is that establishing a new https/ssl session is unusually slow, it takes about 5 seconds! This problem doesn't exit with other clients such as JMeter or .Net clients, so I think the problem is in my client configuration not the server.
Here is my client configuration:


stub = new myStub(url);
org.apache.axis2.client.Options options = stub._getServiceClient()
.getOptions();
options.setProperty(org.apache.axis2.transport.http.HTTPConstants.REUSE_HTTP_CLIENT, "true");

int timeOutInMilliSeconds = 120*1000;
options.setTimeOutInMilliSeconds(timeOutInMilliSeconds); // doesn't make any difference
options.setProperty( org.apache.axis2.transport.http.HTTPConstants.SO_TIMEOUT, timeOutInMilliSeconds); // No change in timeout
options.setProperty( org.apache.axis2.transport.http.HTTPConstants.CONNECTION_TIMEOUT, timeOutInMilliSeconds); // No change in timeout!

I'd appreciate your help in fixing this problem.

Thanks
Joe
 
Yes, my master! Here is the tiny ad you asked for:
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic