Re: Is it possible to use a parameter other than JSESSIONID to maintain session?

2005-03-01 Thread Garth Patil
Changing the name in Globals.java seems to partially work. Now, in order to have Tomcat just use that value, and not try to rewrite it (or expect it in a specific format), I need to find where in the code Tomcat looks up that parameter, and where it rewrites it to the URL. Can anyone familiar with

Re: Is it possible to use a parameter other than JSESSIONID to maintain session?

2005-03-01 Thread Tim Funk
1) Checkout the source 2) issue the command cd {tomcat src base} find . -name '*.java' | xargs grep -i jsessionid This will tell you all the placed jsessionid is used. -Tim Garth Patil wrote: Changing the name in Globals.java seems to partially work. Now, in order to have Tomcat just use that

RE: Is it possible to use a parameter other than JSESSIONID to maintain session?

2005-03-01 Thread Subir Sengupta
You will have to change it in the connector source too. Subir -Original Message- From: Tim Funk [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 01, 2005 3:13 PM To: Tomcat Users List Subject: Re: Is it possible to use a parameter other than JSESSIONID to maintain session? 1) Checkout

Is it possible to use a parameter other than JSESSIONID to maintain session?

2005-02-28 Thread Garth Patil
Hi, I'm currently working on a server application using Tomcat, and I've run into a snag. The clients for the application are custom HTTP clients (a provider's custom client that won't be changing on our behalf) that do not have the ability to persist the JSESSIONID in the request. However, there

Re: Is it possible to use a parameter other than JSESSIONID to maintain session?

2005-02-28 Thread Tim Funk
You *might* be able to recompile tomcat with only changing: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/Globals.java -Tim Garth Patil wrote: Hi, I'm currently working on a server application using Tomcat, and I've run into a snag. The clients for the application are custom HTTP