On Fri, 31 May 2002, Luca Ventura wrote: > Hello everybody! > > I have the following problem.... > > I have two servlets: servlet A and a servlet B. Servlet B is running on a > Web Server that supports SSL protocol, so I can crypt and send all the data > of a HTML form to it using "https" protocol and an url like this: > > https://mydomain/servletB (all the data of the HTML form are sent to this > url using https protocol) > [ ... ] > > Must I use some particular API to support SSL protocol in servlet A? I have > heard about some cryptografic APIs developed by IAIK called "isasilk > toolkit". You can check their features and download them at URL: [ ... ]
Not sure of the details, but Sun has a package for SSL support (JSSE), and you may be able to use that. In fact, I believe it comes with recent versions of the JDK. Check java.cun.com. Here's the URL I found quickly: http://java.sun.com/products/jsse/ And what it says there does seem to agree with what I say above. Milt Epstein Research Programmer Systems and Technology Services (STS) Campus Information Technologies and Educational Services (CITES) University of Illinois at Urbana-Champaign (UIUC) [EMAIL PROTECTED] ___________________________________________________________________________ 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
