This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Web Services and the fly likes Exception during call to .Net web service from WSAD over HTTPS Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Web Services
Reply Bookmark "Exception during call to .Net web service from WSAD over HTTPS" Watch "Exception during call to .Net web service from WSAD over HTTPS" New topic
Author

Exception during call to .Net web service from WSAD over HTTPS

Venkat Ammisetty
Greenhorn

Joined: May 16, 2006
Posts: 2
I am trying to call .Net web service from Java web client using WSAD (version 5.1.1 build id: 20040814_1407 & JVM 1.5.0_04)

Steps taken to configure WSAD:
(1)Imported the certificate files to "cacerts" using keytool to the relevant JVM. Also tried adding certificate files through Admin Console-->Security-->SSL. Also tried through "ikeyman" tool.
(2)Installed fix packs CF1,CF4 and FP1, fixes PK04470_5114.jar and PK05058.jar
(3)Applied Cumulative Fix 008
(4)Applied Cumulative Fix 012

After doing all these things,still I am getting following exception.
If any one entoutered this problem and solved. Please help me inresolving it.

java.net.SocketException: Connection reset
at com.ibm.ws.webservices.engine.WebServicesFault.makeFault(WebServicesFault.java:156)
at com.ibm.ws.webservices.engine.transport.http.HTTP11Sender.invoke(HTTP11Sender.java:323)
at com.ibm.ws.webservices.engine.transport.http.HTTPSender.invoke(HTTPSender.java:87)
at com.ibm.ws.webservices.engine.PivotHandlerWrapper.invoke(PivotHandlerWrapper.java:212)
at com.ibm.ws.webservices.engine.WebServicesEngine.invoke(WebServicesEngine.java:255)
at com.ibm.ws.webservices.engine.client.Connection.invokeEngine(Connection.java:690)
at com.ibm.ws.webservices.engine.client.Connection.invoke(Connection.java:616)
at com.ibm.ws.webservices.engine.client.Connection.invoke(Connection.java:446)
at com.ibm.ws.webservices.engine.client.Stub$Invoke.invoke(Stub.java:663)
at com.checkfree.PaymentManagementSoapStub.getPaymentList(PaymentManagementSoapStub.java:306)
at com.checkfree.PaymentManagementSoapProxy.getPaymentList(PaymentManagementSoapProxy.java:64)
at com.usaa.eft.ibp.pres.ReviewBillsController.doInit(ReviewBillsController.java:111)
at com.usaa.corp.pres.UsaaActionController.executeInternal(UsaaActionController.java:716)
at com.usaa.corp.pres.UsaaActionController.execute(UsaaActionController.java:653)
at com.usaa.infrastructure.presentation.framework.actionhandling.ActionServlet.processAction(ActionServlet.java:805)
at com.usaa.infrastructure.presentation.framework.servlet.PsFrameworkServlet.processData(PsFrameworkServlet.java:3479)
at com.usaa.infrastructure.presentation.framework.servlet.UsaaHttpServlet.doRequest(UsaaHttpServlet.java:566)
at com.usaa.infrastructure.presentation.framework.servlet.UsaaHttpServlet.doGet(UsaaHttpServlet.java:456)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:1095)
at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:627)
at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:201)
at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:125)
at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:286)
at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:182)
at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:652)
at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:448)
at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:912)
Caused by: java.net.SocketException: Connection reset
at java.net.SocketInputStream.read(SocketInputStream.java:195)
at com.ibm.sslite.t.a(Unknown Source)
at com.ibm.sslite.t.b(Unknown Source)
at com.ibm.sslite.t.a(Unknown Source)
at com.ibm.sslite.a.read(Unknown Source)
at com.ibm.jsse.a.read(Unknown Source)
at java.io.FilterInputStream.read(FilterInputStream.java:131)
at java.io.BufferedInputStream.fill(BufferedInputStream.java:200)
at java.io.BufferedInputStream.read(BufferedInputStream.java(Compiled Code))
at com.ibm.ws.webservices.engine.transport.http.HTTP11Sender.readFromSocket(HTTP11Sender.java:1111)
at com.ibm.ws.webservices.engine.transport.http.HTTP11Sender.invoke(HTTP11Sender.java:270)
... 37 more
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Exception during call to .Net web service from WSAD over HTTPS
 
Similar Threads
Accessing Webservice - Client behind firewall
Hiding stacktrace for java net SocketTimeoutException Read timed out
Exception during call to .Net web service from WSAD over HTTPS
Expected 'envelope' but found html
WSAD - accessing webservice from client behind firewall