I'd use a cookie on this problem (unless your session is storing sensitive
information).  You could always encrypt it to some degree too...

Also, you could write your information to disk or to a database, and then
read it into your Java application.

Or do you only get to control the Java 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 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.println( session.getAttribute("thing"));
> jsp/---->
>
> and find "test"...
>
> Thanks!
> Carey
>

Reply via email to