We're not saying your connection failed. What we're saying is that a JDBC connection isn't serializable. You shouldn't have a field in your class for your JDBC connection. What you should do is re-establish your connection during each request by either re-connecting or grabbing a new connection from a pool or something. You don't store it on your component/page.
On Fri, Feb 26, 2010 at 7:42 AM, exceptionist <[email protected]> wrote: > > i´m sorry for reposting, but i still don´t find the other thread.. i thought > my mail didn´t arrived or something like that.. if you have a link for me :) > (would be kind) > > my connection didn´t fail i get all the data i need and the page shows what > it should show. > > what about the connectio-pool? 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. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
