Re: how to get the session id

2006-08-10 Thread Celia Mou
Hi, My solution to this is to inject the session on the .page file: Then in the java file of the page, get the session. From that you can get the session ID: * Declare in the class: public abstract WebRequest getWebRequest(); * Then where you need it: WebSession sess = getWebRequest().

Re: how to get the session id

2006-08-10 Thread Mika Tammilehto
Hi! You can get the Session id like this: cycle.getInfrastructure().getRequest().getSession(true).getId(); Cheers, Mika Tapestry User List wrote: > Hello, > > I need to retrieve the session ID (JSESSIONID) from IRequestCycle. Is there > way to do that ? > > Would be nice if someone have the s

how to get the session id

2006-08-10 Thread Tapestry User List
Hello, I need to retrieve the session ID (JSESSIONID) from IRequestCycle. Is there way to do that ? Would be nice if someone have the solution of this non-urgent problem. Cheers, Didier