Re: Session creation

2009-01-28 Thread Tomas Kolda
Yes restarted. I deleted all from Index, but form. What am I doing wrong? Using 5.0.18, Jetty, Eclipse 3.4. Index.java: @Meta("tapestry.persistence-strategy=client") public class Index { @Property private String query; } Index.tml: http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";>

Re: Session creation

2009-01-28 Thread Kalle Korhonen
Layout's still a component (unless you have a page named Layout), need to be in the page class. I can verify the meta annotation works ok. Kalle On Wed, Jan 28, 2009 at 10:48 AM, Tomas Kolda wrote: > Hmm, I do not know what I'm doing wrong, but it does not work. It still > create session. > >

Re: Session creation

2009-01-28 Thread Thiago H. de Paula Figueiredo
Have you put this annotation in all pages with Form components and restarted you application (to clear the session)? -- Thiago H. de Paula Figueiredo Independent Java consultant, developer, and instructor http://www.arsmachina.com.br/thiago -

Re: Session creation

2009-01-28 Thread Tomas Kolda
Hmm, I do not know what I'm doing wrong, but it does not work. It still create session. @Meta("tapestry.persistence-strategy=client") public class Layout { @Component private Form queryForm; .. Thiago H. de Paula Figueiredo napsal(a): Em Wed, 28 Jan 2009 15:04:35 -0300, Tomas Kolda

Re: Session creation

2009-01-28 Thread Thiago H. de Paula Figueiredo
Em Wed, 28 Jan 2009 15:04:35 -0300, Tomas Kolda escreveu: Meta did not work, because I can't use it on component variable. It can be used only to @Target(TYPE). Maybe you have different version. Put it in the page class at which the Form component is used. I was wrong when I suggested to

Re: Session creation

2009-01-28 Thread Tomas Kolda
dreou for Session listener. Great tool to find out why session is created. Tomas Thiago H. de Paula Figueiredo napsal(a): Em Tue, 27 Jan 2009 19:40:13 -0300, Tomas Kolda escreveu: is there a simple way to detect which part or component of my page forces Session creation? I do not have @Pe

Re: Session creation

2009-01-27 Thread Andreas Andreou
1:49 AM, Thiago H. de Paula Figueiredo wrote: > Em Tue, 27 Jan 2009 19:40:13 -0300, Tomas Kolda escreveu: > >> is there a simple way to detect which part or component of my page forces >> Session creation? I do not have @Persist or @ApplicationState in page class >> and i

Re: Session creation

2009-01-27 Thread Thiago H. de Paula Figueiredo
Em Tue, 27 Jan 2009 19:40:13 -0300, Tomas Kolda escreveu: is there a simple way to detect which part or component of my page forces Session creation? I do not have @Persist or @ApplicationState in page class and it still create session. I wish I knew, but, by default, the Form component

Session creation

2009-01-27 Thread Tomas Kolda
Hi, is there a simple way to detect which part or component of my page forces Session creation? I do not have @Persist or @ApplicationState in page class and it still create session. Thanks Tomas - To unsubscribe, e-mail

Re: Session Creation...

2008-01-02 Thread Norman Franke
I had similar issues changing from an HTTPs login page to a normal HTTP session for speed. I gave up in the end (for now.) I was using Tomcat, and it kept randomly creating a new session when switching back and forth. But, I'd bet it's really your servlet container that's doing this, not

Session Creation...

2007-12-26 Thread Steven Woolley
I am having an issue where a new session is being created by a plugin within a page that already has a session. I need to use just one session for both the page and the plugin. I've tried appending the jsessionid to all the requests made by the plugin, but a new session is still created (