Hi,

I am trying Echo Service over HTTPS. It works fine but server-side throws
following exception stack trace:

DEBUG [2008-06-11 13:49:52,635]  IOException reading request
javax.net.ssl.SSLException: Connection has been shutdown:
javax.net.ssl.SSLExcep
tion: java.net.SocketException: Connection reset
        at
com.sun.net.ssl.internal.ssl.SSLSocketImpl.checkEOF(SSLSocketImpl.jav
a:1232)
...

Here is my client code:

            System.setProperty("javax.net.ssl.trustStore",
"WebContent\\WEB-INF\\conf\\PingClient-TrustStore.jks");
            System.setProperty("javax.net.ssl.trustStoreType", "JKS");
            System.setProperty("javax.net.ssl.trustStorePassword",
"password");
            
            stub = new EchoStub(configContext, URL);
                                
            EchoStringDocument echoStringDoc =
EchoStringDocument.Factory.newInstance();
            
            EchoStringDocument.EchoString echoString =
echoStringDoc.addNewEchoString(); 
            echoString.setIn("Hello There");
                    
            echoStringDoc.setEchoString(echoString);

            EchoStringResponseDocument response =
stub.echoString(echoStringDoc);

-- 
View this message in context: 
http://www.nabble.com/Echo-Service-via-HTTPS-throws-IOException-reading-request-tp17785016p17785016.html
Sent from the Axis - User mailing list archive at Nabble.com.

Reply via email to