Re: encrypting a form's action URL with HTTPS link

2003-10-24 Thread Adam Hardy
On 10/23/2003 05:33 PM Punjabi, Naveen K wrote: Hello Adam, Well yes, in case of SSL (secure socket Layer) all your form content along with the page header will go in an encrypted format. If you want to know in detail how SSL works then here goes the entire explanation SS

Re: encrypting a form's action URL with HTTPS link

2003-10-23 Thread Christopher Schultz
Wade, Actually URLs are. You are using an SSLSocket. Oh, right. Sorry, I had my head temporarily in, uh, a hole in the ground :) My paranoia comes from URLs sometimes being forwarded after decryption, say, behind a firewall. Apache, for one, logs URLs to the access log if configured to do so,

RE: encrypting a form's action URL with HTTPS link

2003-10-23 Thread Wade Chandler
TED] Sent: Thursday, October 23, 2003 5:38 PM To: Tomcat Users List Subject: Re: encrypting a form's action URL with HTTPS link Naveen/Adam, > Well yes, in case of SSL (secure socket Layer) all your form content > along with the page header will go in an encrypted format. Of

Re: encrypting a form's action URL with HTTPS link

2003-10-23 Thread Christopher Schultz
Naveen/Adam, Well yes, in case of SSL (secure socket Layer) all your form content along with the page header will go in an encrypted format. Of note is that the URL itself is *not* encrypted, although everything else is. So, be careful that you specify your HTTPS form submissions as bein

RE: encrypting a form's action URL with HTTPS link

2003-10-23 Thread Punjabi, Naveen K
rsday, October 23, 2003 8:33 AM To: Tomcat Users List Subject: RE: encrypting a form's action URL with HTTPS link Hello Adam, Well yes, in case of SSL (secure socket Layer) all your form content along with the page header will go in an encrypted format. If you want to know in deta

RE: encrypting a form's action URL with HTTPS link

2003-10-23 Thread Punjabi, Naveen K
c.edu/~npunjabi -Original Message- From: Bill Barker [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 21, 2003 7:59 PM To: [EMAIL PROTECTED] Subject: Re: encrypting a form's action URL with HTTPS link "Adam Hardy" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECT

RE: encrypting a form's action URL with HTTPS link

2003-10-23 Thread Punjabi, Naveen K
-Original Message- From: Bill Barker [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 21, 2003 7:59 PM To: [EMAIL PROTECTED] Subject: Re: encrypting a form's action URL with HTTPS link "Adam Hardy" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > >

Re: encrypting a form's action URL with HTTPS link

2003-10-22 Thread frode
> > PS is there a tool like wget or perhaps a way of using wget, where I can > > specify form elements in a request and see the contents & config of the > > server's response? You might want to look at cURL, http://curl.haxx.se/ --

Re: encrypting a form's action URL with HTTPS link

2003-10-21 Thread Bill Barker
"Adam Hardy" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > > Hi All, > > I am trying to work out whether my form submission is sent encrypted in > SSL or not. > > If I code my form like this: > > https://localhost:8443/sslform";> > > will it actually be encrypted? > Yes. > When