Re: Sharing session state on IIS...

2000-11-11 Thread Christian Wenz
unfortunately, you cannot access ASP session information from other scripting languages. The cookie sent with an ASP session does only contain a session ID but no data (this is stored in memory) ... Regards Christian Carey Nation wrote: > It's not that I only get to control the java code, it's

RE: Sharing session state on IIS...

2000-11-11 Thread Carey Nation
ut I'd still like to know... Thanks! Carey -Original Message- From: Scott Jones [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 09, 2000 7:48 AM To: [EMAIL PROTECTED] Subject: Re: Sharing session state on IIS... I'd use a cookie on this problem (unless your session is storing

Re: Sharing session state on IIS...

2000-11-09 Thread Scott Jones
code? -Scott - Original Message - From: "Carey Nation" <[EMAIL PROTECTED]> To: "'tomcat'" <[EMAIL PROTECTED]> Sent: Thursday, November 09, 2000 3:45 PM Subject: Sharing session state on IIS... > I know this is unholy, but I (through no faul

Sharing session state on IIS...

2000-11-09 Thread Carey Nation
I know this is unholy, but I (through no fault of my own) need to share session state between, blech, some asp's and jsp's. Blame marketing, I do. Anyway, is there a, hopefully decent, way to do this? I want to be able to: asp-> <% Session("thing") = "test" %> asp/> jsp-> out.pri