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.