Quang Ton wrote:

> I have a need to write a Java class to send a SECURE HTTP FORM POST.  I know
> how to do a regular HTTP FORM Post via URLConnection which has already been
> discussed in this forum, but do not know where to start to write a secure
> one. Any information is appreciated.
>
> Thank you,
> Quang
>

The good news -- all you need to change is the scheme in your URL:  use "https"
instead of "http" and everything else is the same.

The (possibly) bad news -- your JVM (or a class library you install) must
include support for the HTTPS protocol.  This wasn't the case with JDK 1.1, but
if I remember right it was added in JDK 1.2.2 or thereabouts.

Craig McClanahan

___________________________________________________________________________
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

Reply via email to