W.: serializable problem

2010-02-26 Thread bj�rn liffers
hello, i´ve got a problem with serialization. my application is connected to a mysql-db and every class of mine implements serializable. but still there are exceptions telling me that java.lang.Object isn´t serializable... quote

Re: W.: serializable problem

2010-02-26 Thread bgooren
-- View this message in context: http://old.nabble.com/W.%3A-serializable-problem-tp27715846p27716936.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr

Re: W.: serializable problem

2010-02-26 Thread James Carman
Please don't re-post. We've already started to answer your question in another thread (I asked you if you had a Connection field somewhere). 2010/2/26 björn liffers bad.ad...@arcor.de: hello, i´ve got a problem with serialization. my application is connected to a mysql-db and every class of

Re: W.: serializable problem

2010-02-26 Thread exceptionist
? does it mean that i won´t have problems with serialization if i am using a c-pool?? -- View this message in context: http://old.nabble.com/W.%3A-serializable-problem-tp27715846p27717742.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: W.: serializable problem

2010-02-26 Thread James Carman
-serializable-problem-tp27715846p27717742.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h

Re: W.: serializable problem

2010-02-26 Thread exceptionist
this org.apache.commons are libs which i binded as jar-files. -- View this message in context: http://old.nabble.com/W.%3A-serializable-problem-tp27715846p27718624.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: W.: serializable problem

2010-02-26 Thread James Carman
conpooling.java this org.apache.commons are libs which i binded as jar-files. -- View this message in context: http://old.nabble.com/W.%3A-serializable-problem-tp27715846p27718624.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: W.: serializable problem

2010-02-26 Thread T Ames
Here was my response to your original post: Serialization gets tricky. You must be very careful about all of the class level fields/objects you use. They must all be serializable and each object that those objects use or refer to must be serializable. Instead of using class level fields, wherever

Re: W.: serializable problem

2010-02-26 Thread Igor Vaynberg
?? -- View this message in context: http://old.nabble.com/W.%3A-serializable-problem-tp27715846p27717742.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr

serializable problem

2010-02-25 Thread bj�rn liffers
hello, i´ve got a problem with serialization. my application is connected to a mysql-db and every class of mine implements serializable. but still there are exceptions telling me that java.lang.Object isn´t serializable... quote

Re: serializable problem

2010-02-25 Thread nino martinez wael
declare it transient But im not sure why you a object of that kind in there... Would be nice with some more code.. 2010/2/25 björn liffers bad.ad...@arcor.de hello, i´ve got a problem with serialization. my application is connected to a mysql-db and every class of mine implements

Re: serializable problem

2010-02-25 Thread James Carman
Do you have a java.sql.Connection field in one of your components/pages? 2010/2/25 björn liffers bad.ad...@arcor.de: hello, i´ve got a problem with serialization. my application is connected to a mysql-db and every class of mine implements serializable. but still there are exceptions

Re: serializable problem

2010-02-25 Thread Fatih Mehmet Ucar
probably you have some non-serializable object in your page, have you checked? -fmu On 25 February 2010 14:40, James Carman jcar...@carmanconsulting.com wrote: Do you have a java.sql.Connection field in one of your components/pages? 2010/2/25 björn liffers bad.ad...@arcor.de: hello, i´ve

Re: serializable problem

2010-02-25 Thread T Ames
Serialization gets tricky. You must be very careful about all of the class level fields/objects you use. They must all be serializable and each object that those objects use or refer to must be serializable. Instead of using class level fields, wherever possible, pass objects around as parameters