Hi Sylvain, Try -Djavax.net.debug=ssl,handshake option ( more about it in Sun's JSSE documentation ) in your server JVM. It should give some clue.
I have found that SSL is a fairly complex protocol and works in different modes. Also, JSSE library choses the first key entry from the keystore ( if you have more than one entries in your keystore. Use "keytool -list -v ... to examine your keystore ) for presentation to the client and also presents all the certificates in the truststore to the client. Client's response depends on what certificates it has and what it gets from the server ( among other things like algorithms supported, SSL version supported and so on ) ... Hope it helps. /Pankaj. -----Original Message----- From: St-Germain, Sylvain To: [EMAIL PROTECTED] Sent: 5/6/02 11:14 AM Subject: RE: SSL Tomcat and Axis Pankaj, Many thanks for this, I could get your simple echo service up and running, I can send and receive a simple string over SSL but when I apply what I learned to my service I see that the data travels encrypted but Axis (client-side) never terminate. It never leave invoke()... Looks like I have to step through it... Sylvain. -----Original Message----- From: KUMAR,PANKAJ (HP-Cupertino,ex1) [mailto:[EMAIL PROTECTED]] Sent: Friday, May 03, 2002 5:56 PM To: '[EMAIL PROTECTED]' Subject: RE: SSL Tomcat and Axis Hi Sylvain, Look at http://www.pankaj-k.net/WSOverSSL/WSOverSSL-HOWTO.html for some info on this. /Pankaj > -----Original Message----- > From: St-Germain, Sylvain [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 03, 2002 2:26 PM > To: Axis-User (E-mail) > Subject: SSL Tomcat and Axis > > > I have followed the instructions @ > http://xml.apache.org/soap/docs/install/FAQ_Tomcat_SOAP_SSL.html > > Although I can see the request coming out and back in (using > tcpmon) the > process never seems to terminate. > > Anyone successfully achieved this? > -- > Sylvain > > This message may contain privileged and/or confidential > information. If you > have received this e-mail in error or are not the intended > recipient, you > may not use, copy, disseminate or distribute it; do not open any > attachments, delete it immediately from your system and > notify the sender > promptly by e-mail that you have done so. Thank you. > This message may contain privileged and/or confidential information. If you have received this e-mail in error or are not the intended recipient, you may not use, copy, disseminate or distribute it; do not open any attachments, delete it immediately from your system and notify the sender promptly by e-mail that you have done so. Thank you.
