Re: Session error while loading an object

2010-07-14 Thread Robert Taylor
" To: "Struts Users Mailing List" Sent: Wednesday, July 14, 2010 5:15 AM Subject: Re: Session error while loading an object 2010/7/14 Paweł Wielgus Hi all, You get this error every time when tomcat tries to save someone's session and object of class com.cart.Customer is in it.

Re: Session error while loading an object

2010-07-14 Thread Ernesto Reinaldo Barreiro
Just the same problem: BasicDataSource is not serializable. Ernesto On Wed, Jul 14, 2010 at 11:15 AM, abhishek jain wrote: > 2010/7/14 Paweł Wielgus > >> Hi all, >> You get this error every time when tomcat tries to save someone's >> session and object of class com.cart.Customer is in it. >> Li

Re: Session error while loading an object

2010-07-14 Thread abhishek jain
2010/7/14 Paweł Wielgus > Hi all, > You get this error every time when tomcat tries to save someone's > session and object of class com.cart.Customer is in it. > Like Robert said, add Serializable to com.cart.Customer and the > problem will go away. > > Best greetings, > Paweł Wielgus. > Hi, I h

Re: Session error while loading an object

2010-07-14 Thread Paweł Wielgus
Hi all, You get this error every time when tomcat tries to save someone's session and object of class com.cart.Customer is in it. Like Robert said, add Serializable to com.cart.Customer and the problem will go away. Best greetings, Paweł Wielgus. 2010/7/13 abhishek jain : > Hi, > thanks for the

Re: Session error while loading an object

2010-07-13 Thread abhishek jain
Hi, thanks for the comments, i will check but i get this error only at times, and not always. Can this still be the cause of the problem. thanks abhishek On Tue, Jul 13, 2010 at 6:39 PM, Robert Taylor wrote: > Greetings, > > Does the Customer object implement Serializable interface? > If not, try

Re: Session error while loading an object

2010-07-13 Thread Robert Taylor
Greetings, Does the Customer object implement Serializable interface? If not, try modifying Customer to implement Serializable and see if the error still persists. /robert - Original Message - From: "abhishek jain" To: "Struts Users Mailing List" Sent: Tuesday, July 13, 2010 4:33 A