set SessionID (PLEASE HELP)

2001-10-31 Thread tomcat
Hi, I have to set the sessionID manually - how to do it??? I want to extract the sessionID from an encoded POST- or GET-variable, and want my session to bind to it!!! thanks michi -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL

Re: set SessionID (PLEASE HELP)

2001-10-31 Thread Yoav Shapira
Howdy, The sessionID is an internal identifier assigned and used by the web server (typically). Maybe you want to consider using your own session variable with a different name, that you can assign and control manually? It would be your responsibility to guarantee uniqueness, but that's

Re: set SessionID (PLEASE HELP)

2001-10-31 Thread Michael
hi, I don't want to generate my own unique sessionID, but: I get the sessionID from getSession(), then I don't want to use cookies nor rewriteURL()!!! I want to hide the sessionID in an encoded GET-variable and do a request like: 1st request: getSession().getID() - 1234567 encode

AW: set SessionID (PLEASE HELP)

2001-10-31 Thread Ralph Einfeldt
: Mittwoch, 31. Oktober 2001 15:37 An: [EMAIL PROTECTED] Cc: Yoav Shapira Betreff: Re: set SessionID (PLEASE HELP) hi, I don't want to generate my own unique sessionID, but: I get the sessionID from getSession(), then I don't want to use cookies nor rewriteURL()!!! I want to hide

Re: set SessionID (PLEASE HELP)

2001-10-31 Thread Craig R. McClanahan
-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: Yoav Shapira [EMAIL PROTECTED] Subject: Re: set SessionID (PLEASE HELP) hi, I don't want to generate my own unique sessionID, but: I get the sessionID from getSession(), then I don't want to use cookies nor rewriteURL

Re: set SessionID (PLEASE HELP)

2001-10-31 Thread Pae Choi
: Date: Wed, 31 Oct 2001 15:37:15 +0100 From: Michael [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: Yoav Shapira [EMAIL PROTECTED] Subject: Re: set SessionID (PLEASE HELP) hi, I don't want to generate my own unique sessionID, but: I get