Re: nullpointerexception with standard manager

2007-05-09 Thread Rashmi Rubdi
On 5/9/07, mélanie langlois <[EMAIL PROTECTED]> wrote: Hi, Thank you for your explanation. Actually, we don't need this feature in our application, so i want to disable the persistence of session. To disable the persistence of session add this between the opening and closing tag However

Re: nullpointerexception with standard manager

2007-05-09 Thread mélanie langlois
I saw only explanation for doing this on tomcat 5.5.x by modifying context.xml .. Thanks, Mélanie From: David Delbecq <[EMAIL PROTECTED]> Reply-To: "Tomcat Users List" To: Tomcat Users List Subject: Re: nullpointerexception with standard manager Date: Mon, 07 Ma

Re: nullpointerexception with standard manager

2007-05-07 Thread David Delbecq
The standardmanager persist sessions across reload using serialization. That mean all object in session must be serializable. An object is serializable if 1) it implements the Serializable interface (see also the externalizable interface which give more control on serialization) 2) it has an no-par

nullpointerexception with standard manager

2007-05-07 Thread mélanie langlois
Hello, We are running tomcat 5.0.28, and we have a problem with the standardManager when restarting our application. We have a NullPointerException when the StandardManager loads a session object.This object has static fields calling another class method (to obtain the bundles key for some pag