Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to set the request (and connection) timeout for a jax-ws-webservice-client generated with the jaxws-maven-plugin. When running my app under tomcat or jetty the timeout works, but when deployed under jboss it doesn't "take".

private void setRequestAndConnectionTimeout(Object wsPort) {
  String REQUEST_TIMEOUT = BindingProviderProperties.REQUEST_TIMEOUT; // "com.sun.xml.ws.request.timeout";
  ((BindingProvider) wsPort).getRequestContext().put(REQUEST_TIMEOUT, timeoutInMillisecs);
  ((BindingProvider) wsPort).getRequestContext().put(JAXWSProperties.CONNECT_TIMEOUT, timeoutInMillisecs);
}

What is the correct way to do this for JBoss?

share|improve this question

2 Answers

up vote 7 down vote accepted

Try with this code in Jboss:

(BindingProvider)wsPort).getRequestContext().put(StubExt.PROPERTY_CLIENT_TIMEOUT, yourTimeoutInMillisec);

Have a look to this thread.

share|improve this answer
2  
That solves it! StubExt is in: import org.jboss.ws.core.StubExt; Had to add some maven dependencies: <dependency> <groupId>jboss-eap</groupId> <artifactId>jbossws-spi</artifactId> <version>4.3.0.GA_CP02</version> <scope>provided</scope> </dependency> <dependency> <groupId>jboss-eap</groupId> <artifactId>jbossws-core</artifactId> <version>4.3.0.GA_CP02</version> <scope>provided</scope> </dependency> Thanks a lot! – Jonas Andersson Apr 7 '10 at 13:24

Great! In my case, I'm not using Maven, just c&p .jars in /lib folder. (Legacy code written in 2009 XD) So, if you are looking for the class org.jboss.ws.core.StubExt, this is in jbossws-client.jar.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.