java - Webservice request fails for sequential call in Webshpere 7.0 -


i running error when trying call web service server side of spring based web application.

javax.xml.ws.webserviceexception: java.io.ioexception: async io operation failed (1),  reason: rc: 55 specified network resource or device no longer available. 

the web application developing running on websphere 7.0 / windows server 2008 r2 64bit.

the web service interface implemented javax.iws.webserivce (uses @webservice annotation). in case has 2 methods implemented @webmethod annotation call 2 different methods on web service.

error happens when try call 1st , 2nd methods sequentially 1 after another. calling both of these methods done in same server side function:

public myresponse getresponse (...) {      res res1 = webserviceinstance.getfstcall()      res res2 = webserviceinstance.getsndcall()  } 

1st method call succeeds, above mentioned error 2nd call.


Popular posts from this blog

c# - ODP.NET Oracle.ManagedDataAccess causes ORA-12537 network session end of file -

matlab - Compression and Decompression of ECG Signal using HUFFMAN ALGORITHM -

utf 8 - split utf-8 string into bytes in python -