RE: newbie question: SSL session ID via Perl/CGI

2000-03-22 Thread Denny Lee
: SSL session ID via Perl/CGI Wow! My earlier post blew up, didn't it? Here's the correct answer: The "HTTPS_SESSIONID" is passed by the (Netscape) server as an environment variable available to any CGI. Get it thusly: $ses_id = $ENV{'HTTPS_SESSIONID'}; The times I&

Re: newbie question: SSL session ID via Perl/CGI

2000-03-21 Thread darkspell
Wow! My earlier post blew up, didn't it? Here's the correct answer: The "HTTPS_SESSIONID" is passed by the (Netscape) server as an environment variable available to any CGI. Get it thusly: $ses_id = $ENV{'HTTPS_SESSIONID'}; The times I've tried to access, however, it has been blank. Let me kn

Re: newbie question: SSL session ID via Perl/CGI

2000-03-21 Thread darkspell
ssage- From: Denny Lee <[EMAIL PROTECTED]> To: '[EMAIL PROTECTED]' <[EMAIL PROTECTED]> Date: Monday, March 20, 2000 8:44 PM Subject: newbie question: SSL session ID via Perl/CGI ? >Hi there, > >Is there a relatively easy way for me to obtain the SSL session

Re: newbie question: SSL session ID via Perl/CGI ?

2000-03-20 Thread Ben Laurie
Denny Lee wrote: > > Hi there, > > Is there a relatively easy way for me to obtain the SSL session ID via > Perl/CGI ? I wanted to refer to that session id to help me validate the > user that is logging into the web site. Any help will be greatly > appreciated - including being told that I don

newbie question: SSL session ID via Perl/CGI ?

2000-03-20 Thread Denny Lee
Hi there, Is there a relatively easy way for me to obtain the SSL session ID via Perl/CGI ? I wanted to refer to that session id to help me validate the user that is logging into the web site. Any help will be greatly appreciated - including being told that I don't know what I'm talking about !