Luca, If you just want to use Https to secure the communication between the client browser and your server, all you have to do is install a SSL certificate on your server. You do not need to use the javax.net.ssl classes at all. The server will handle the SSL handshake for you and decrypt and encrypt the data coming in from the browser. If for some reason, you need to have your servlet act as a client that connects to another system using SSL, then you will need to use the javax.net.ssl classes. What is the architecture of your system? What server are you using?
Regards, Richard At 12:34 PM 6/26/2002 +0200, you wrote: >Hello everybody! > >I would like to support HTTPS protocol using JDK 1.4. In fact I would like >to connect to secure sites from my servlet using https protocol. Can I do >this using only JDK 1.4 or I must install and use some other APIs? > >Thanks a lot in advance! > > Luca > >___________________________________________________________________________ >To unsubscribe, send email to [EMAIL PROTECTED] and include in the body >of the message "signoff SERVLET-INTEREST". > >Archives: http://archives.java.sun.com/archives/servlet-interest.html >Resources: http://java.sun.com/products/servlet/external-resources.html >LISTSERV Help: http://www.lsoft.com/manuals/user/user.html ___________________________________________________________________________ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLET-INTEREST". Archives: http://archives.java.sun.com/archives/servlet-interest.html Resources: http://java.sun.com/products/servlet/external-resources.html LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
