Re: serialization problem with spring

2011-08-01 Thread Dan Retzlaff
method on AccountManager that returns an > > object with PersistenceExceptionTranslationInterceptor, then holds a > > reference to it? If so, that'll be a problem since Wicket doesn't know to > > proxy that one. > > > > Dan > > > > On Sun, Jul

Re: serialization problem with spring

2011-08-01 Thread Martin Grigorov
>>> object with PersistenceExceptionTranslationInterceptor, then holds a >>> reference to it? If so, that'll be a problem since Wicket doesn't know to >>> proxy that one. >>> >>> Dan >>> >>> On Sun, Jul 31, 2011 at 5:08 PM, Jo

Re: serialization problem with spring

2011-07-31 Thread Joe Fawzy
the stack to find the culprit. Any >> change your CreatePage uses a method on AccountManager that returns an >> object with PersistenceExceptionTranslationInterceptor, then holds a >> reference to it? If so, that'll be a problem since Wicket doesn't know to >> pro

Re: serialization problem with spring

2011-07-31 Thread Joe Fawzy
ence to it? If so, that'll be a problem since Wicket doesn't know to > proxy that one. > > Dan > > On Sun, Jul 31, 2011 at 5:08 PM, Joe Fawzy wrote: > > > Hi > > i have a serialization problem with spring > > My CreatePage class looks like:- >

Re: serialization problem with spring

2011-07-31 Thread Dan Retzlaff
returns an object with PersistenceExceptionTranslationInterceptor, then holds a reference to it? If so, that'll be a problem since Wicket doesn't know to proxy that one. Dan On Sun, Jul 31, 2011 at 5:08 PM, Joe Fawzy wrote: > Hi > i have a serialization problem with spring > M

Re: serialization problem with spring

2011-07-31 Thread Bruno Borges
What version of Wicket are you using? On older versions you must declare your field as transient. Newer versions don't required this anymore. *Bruno Borges* www.brunoborges.com.br +55 21 76727099 On Sun, Jul 31, 2011 at 9:08 PM, Joe Fawzy wrote: > Hi > i have a serialization p

serialization problem with spring

2011-07-31 Thread Joe Fawzy
Hi i have a serialization problem with spring My CreatePage class looks like:- public class CreatePage extends WebPage{ @SpringBean AccountManager accountManager; } as i am using @SpringBean , it should handle creating a serializable proxy for me BUT i got the following exception