Re: https

1998-12-03 Thread Jason von Nieda
Christopher Hinds wrote: > you read or send data). However if you plan on developing standalone > Java applications that will talk the HTTP deamons the support HTTPS > (SSL) you will need some sort of HTTPSUrlConnection support. Thought I would drop a little plug here. I am currently developing

Re: https

1998-12-03 Thread Christopher Hinds
ame. > > Zoltan TAR > > > -- > > From: Massimo Conti[SMTP:[EMAIL PROTECTED]] > > Sent: 1998. december 3. 11:14 > > To: [EMAIL PROTECTED] > > Subject: Re: https > > > > <> > > Hi,

RE: https

1998-12-03 Thread Tar . Zoltan
Zoltan TAR > -- > From: Massimo Conti[SMTP:[EMAIL PROTECTED]] > Sent: 1998. december 3. 11:14 > To: [EMAIL PROTECTED] > Subject: Re: https > > <> > Hi, > > > If I remember correctly, if an applet is loaded through https, >

Re: https

1998-12-03 Thread Massimo Conti
Hi, > If I remember correctly, if an applet is loaded through https, > any socket opened by this applet will use https by default. > > I could be wrong... No it is right. I have made some tests opening a secure site from an applet running in a browser (Netscape) and it works fine. Bye Massim

RE: https

1998-12-02 Thread Nguyen, Tram N.
Yes, Java does support https . All you need to do is instead of setting your URL to http://www.abc.com/something.html , you set that to https://www.abc.com/something.html (provided you enable your virtual directory). regards, Tram Nguyen N. Science Application International Corporation http://ww

Re: https

1998-12-02 Thread Vincent Trussart
[EMAIL PROTECTED] wrote: > Hello > > I'm working on a project which needs to send information > such as credit card number to a web server, I'm thinking > of using protocol https, does java support https? > > If it does, how? > > Zoltan TAR If I remember correctl