Indeed it does - it's in ssl.jar along with a lot of interesting looking ssl classes - whether you could use this outside of JWS I would doubt, Kevin -----Original Message----- From: A mailing list for discussion about Sun Microsystem's Java Servlet API Technology. [mailto:[EMAIL PROTECTED]]On Behalf Of Stan Kotlyar Sent: 29 June 1999 09:51 To: [EMAIL PROTECTED] Subject: Re: URL I have done this with Sun's JWS ... I guess the JVM which ships with this has the https handler ... Stan. Kevin Jones <[EMAIL PROTECTED]> on 29/06/99 03:52:57 PM Please respond to "A mailing list for discussion about Sun Microsystem's Java Servlet API Technology." <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] cc: (bcc: Stan Kotlyar/FPA) Subject: Re: URL The URL class parses the url it is passed and tries to create a protocol handler object for the given protocol (https in this case). The JVM ships with protocol handlers for http, ftp, file, gopher, jar, mailto, netdoc, systemresource and verbatim (don't know what the last three are) as part of the sun.net.www.protocol package. By default there is no https handler (by default) - however you can write your own protocol handlers and add them to this list - I've written a 'time' handler to show how this works if you are interested, Kevin -----Original Message----- From: A mailing list for discussion about Sun Microsystem's Java Servlet API Technology. [mailto:[EMAIL PROTECTED]]On Behalf Of Xizhen Wang Sent: 28 June 1999 08:43 To: [EMAIL PROTECTED] Subject: URL Hi! All, If I use URL url = new URL("https://127.0.0.1"); does it mean the the program will use HTTPS? If not, is there a way to make the URLConnection a HTTPS connection? (or at least encrypted in other ways) Thanks! ___________________________________________________________________________ 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 ___________________________________________________________________________ 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
