: 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&
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
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
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
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
!