Re: Custom session tracking method?

2004-04-07 Thread Sandy McArthur
Since you're rewriting your CGI scripts as servlets, why not modify them to not expect the session-num parameter, and instead get the session ID via normal java code (request.getSession().getId())? It's simpler, standard, less code for you to write and test... My problem is the client, which is

RE: Custom session tracking method?

2004-04-07 Thread Mike Curwen
of some sort, and then from that point, the legacy app appends it to any further queries? -Original Message- From: Sandy McArthur [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 07, 2004 10:21 AM To: Tomcat Users List Subject: Re: Custom session tracking method? Since you're

Re: Custom session tracking method?

2004-04-07 Thread Sandy McArthur
: Sandy McArthur [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 07, 2004 10:21 AM To: Tomcat Users List Subject: Re: Custom session tracking method? Since you're rewriting your CGI scripts as servlets, why not modify them to not expect the session-num parameter, and instead get the session ID via

RE: Custom session tracking method?

2004-04-07 Thread Mike Curwen
- From: Sandy McArthur [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 07, 2004 10:45 AM To: Tomcat Users List Subject: Re: Custom session tracking method? The first request the legacy app makes is to /login which it uses your normal Basic authentication which is nice because I can