Mixing TOMCAT and mod_perl sessions

2002-08-12 Thread Yair Lenga
Greetings, The website I'm supporting is running both TOMCAT applications('.war'), and has mod_perl scripts (all of them are registry - CGIscripts). I have the following requirements: The user identification information must be shared between TOMCAT and mod_perl (so that the user does not need

Re: Mixing TOMCAT and mod_perl sessions

2002-08-12 Thread Gunther Birznieks
What you could do is write an Apache::Session driver that instead of storing to a file, passes the session id as a call to a web service that gets and sets session data using parameters sent to a servlet running in the same context as the sessions where your Java servlets/JSPs run. I've not

Mixing TOMCAT and mod_perl sessions (resend)

2002-08-12 Thread Yair Lenga
Greetings, The website I'm supporting is running both TOMCAT applications ('.war'), and has mod_perl scripts (all of them are registry - CGI scripts). I have the following requirements: * The user identification information must be shared between TOMCAT and mod_perl (so that the user does

Re: Mixing TOMCAT and mod_perl sessions

2002-08-12 Thread Perrin Harkins
Yair Lenga wrote: The website I'm supporting is running both TOMCAT applications ('.war'), and has mod_perl scripts (all of them are registry - CGI scripts). I have the following requirements: * The user identification information must be shared between TOMCAT and mod_perl (so