Return-Path: Mailing-List: contact tomcat-user-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list tomcat-user@jakarta.apache.org Received: (qmail 71308 invoked from network); 10 Nov 2000 00:32:20 -0000 Received: from adsl-63-207-138-178.dsl.sndg02.pacbell.net (HELO bilbo) (63.207.138.178) by locus.apache.org with SMTP; 10 Nov 2000 00:32:20 -0000 Received: from bilbo ([127.0.0.1]) by bilbo with Microsoft SMTPSVC(5.0.2172.1); Thu, 9 Nov 2000 04:47:42 -0800 Message-ID: <017801c04a4b$402da630$b28acf3f@bilbo> From: "Scott Jones" To: References: <000401c04aa7$2900dc50$1e65a8c0@stevieray> Subject: Re: Sharing session state on IIS... Date: Thu, 9 Nov 2000 04:47:39 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6700 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 X-OriginalArrivalTime: 09 Nov 2000 12:47:42.0621 (UTC) FILETIME=[402F2CD0:01C04A4B] X-Spam-Rating: locus.apache.org 1.6.2 0/1000/N 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" To: "'tomcat'" 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 >