Re: tomcat session id

2012-07-15 Thread Konstantin Kolinko
2012/7/15 Elias Kopsiaftis : > thank you, and it wasnt working thats why i asked. there must be something > else wrong in my code Session is recognized by sessionid sent either via a "Cookie" header in HTTP request, or as a path parameter in URL of HTTP request. You can inspect what is actually

Re: tomcat session id

2012-07-15 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Elias, On 7/15/12 3:52 PM, Elias Kopsiaftis wrote: > thank you, and it wasnt working thats why i asked. there must be > something else wrong in my code Would you care to *post* your code? Perhaps someone with Comet experience could give you an opinio

Re: tomcat session id

2012-07-15 Thread Elias Kopsiaftis
thank you, and it wasnt working thats why i asked. there must be something else wrong in my code On Sun, Jul 15, 2012 at 3:50 PM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Elias, > > On 7/15/12 1:37 PM, Elias Kopsiaftis wrote:

Re: tomcat session id

2012-07-15 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Elias, On 7/15/12 1:37 PM, Elias Kopsiaftis wrote: > ok i appreciate the input, but for now i will stick with the comet > approach because i read that websocket for tomcat 7 is still > experimental and i already built a lot of logic around the comet >

Re: tomcat session id

2012-07-15 Thread Elias Kopsiaftis
ok i appreciate the input, but for now i will stick with the comet approach because i read that websocket for tomcat 7 is still experimental and i already built a lot of logic around the comet approach. does anyone know the answer to my original question? On Sat, Jul 14, 2012 at 1:07 PM, Christoph

Re: tomcat session id

2012-07-14 Thread Christopher Schultz
André, On Jul 14, 2012, at 6:03, André Warnier wrote: > Elias Kopsiaftis wrote: >> Well basically, For the output servlet, I am using comet to keep the >> connection alive and push things out to the client when they are available. >> This program is a chat program with a drawing capability, so t

Re: tomcat session id

2012-07-14 Thread André Warnier
Elias Kopsiaftis wrote: Well basically, For the output servlet, I am using comet to keep the connection alive and push things out to the client when they are available. This program is a chat program with a drawing capability, so two people can draw on the same canvas and chat with each other.

Re: tomcat session id

2012-07-13 Thread Elias Kopsiaftis
Well basically, For the output servlet, I am using comet to keep the connection alive and push things out to the client when they are available. This program is a chat program with a drawing capability, so two people can draw on the same canvas and chat with each other. On Fri, Jul 13, 2012 at 10:

Re: tomcat session id

2012-07-13 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Elias, On 7/13/12 9:39 AM, Elias Kopsiaftis wrote: > I am working on a program that uses two servlets, one for input > from the client, and one for output to the client. Good so far. > My question is, from the client side, I will have two connection

Re: Fwd: Tomcat Session Id generation Overriding!!

2010-01-09 Thread Mark Thomas
On 09/01/2010 11:01, Arnab Ghosh wrote: > Dear Friends, > > Tomcat is using ManagerBase generateSessionId() to generate session Id. But > I want a generation mechnism where each sessionId will be unique in whole > tomcat. Right now it is unique in a single context. But I want uniqueness > will be

Fwd: Tomcat Session Id generation Overriding!!

2010-01-09 Thread Arnab Ghosh
Dear Friends, Tomcat is using ManagerBase generateSessionId() to generate session Id. But I want a generation mechnism where each sessionId will be unique in whole tomcat. Right now it is unique in a single context. But I want uniqueness will be among all context running under the tomcat. How can