vote up 0 vote down star

All,

I am calling a web service deployed on jboss using java annotations (javax.jws.web*) exposing a single method. In my web.xml I have the following code appended before the end of the webapp

<session-config>
 <session-timeout>0</session-timeout>
</session-config>

I am wanting to the web service to wait and receive a response but, at this point it keeps timing out.

The web service method request calls a java method located in a java class located in a folder on the server. It then does some calculations and returns the answer. So far after about a minute the current web services times out.

pseudo
@WebMethod
public defaultRun(){
try{
  DefaultRun.run()
   }
 catch{etc}
}
flag
Can you tell us more about it? What does the web service do exactly? Does it execute a long running transaction? Can you provide the error and stack trace? PS: Configuring the HttpSession timeout through the web.xml won't change anything to your problem. – Pascal Thivent Oct 9 at 2:46

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.