ObjectAutoCompleteBuilder in wicket 1.5.7 get is not a valid Serializable" error.

2012-08-28 Thread Vignesh Palanisamy
Hello everyone, We had used ObjectAutoCompleteBuilder for a text field in a form in wicket 1.4 here its work fine, but right now we are migrating from wicket 1.4 to wicket 1.5.7 as well as wicketstuff 1.5.7. here on submit form, we get : *"is not a valid Serializable"* error. why it comes? is we

Re: ObjectAutoCompleteBuilder in wicket 1.5.7 get is not a valid Serializable" error.

2012-08-28 Thread Martin Grigorov
Hi, SerializableChecker logs a detailed message pointing to the non-serializable field. Please paste the exception. On Wed, Aug 29, 2012 at 7:37 AM, Vignesh Palanisamy wrote: > Hello everyone, > > We had used ObjectAutoCompleteBuilder for a text field in a form in wicket > 1.4 here its work fine

Re: ObjectAutoCompleteBuilder in wicket 1.5.7 get is not a valid Serializable" error.

2012-08-29 Thread Martin Grigorov
This line says it all: private java.lang.Object org.apache.wicket.model.CompoundPropertyModel.target [class=org.apache.wicket.quickstart.HomePage$SearchOptions] <- field that is not serializable HomePage$SearchOptions is not Serializable On Wed, Aug 29, 2012 at 11:20 AM, Vignesh Palanisamy

Re: ObjectAutoCompleteBuilder in wicket 1.5.7 get is not a valid Serializable" error.

2012-08-29 Thread Vignesh Palanisamy
while implementing Serializable also the same error came martin! On Wed, Aug 29, 2012 at 6:17 PM, Martin Grigorov wrote: > This line says it all: > > private java.lang.Object > org.apache.wicket.model.CompoundPropertyModel.target > [class=org.apache.wicket.quickstart.HomePage$SearchOptions] <---

Re: ObjectAutoCompleteBuilder in wicket 1.5.7 get is not a valid Serializable" error.

2012-08-29 Thread Vignesh Palanisamy
hi martin.. i implement Serializable for searchOption then i run It and gives error on status class and i had implement serializable to status class too, Now it gives this error exception. ERROR - JavaSerializer - Error serializing object class org.apache.wicket.quickstart.HomeP

Re: ObjectAutoCompleteBuilder in wicket 1.5.7 get is not a valid Serializable" error.

2012-08-29 Thread Sven Meier
Check the first anonymous class inside HomePage, it is not serializable. Sven On 08/30/2012 06:12 AM, Vignesh Palanisamy wrote: hi martin.. i implement Serializable for searchOption then i run It and gives error on status class and i had implement serializable to status class too, Now it give

Re: ObjectAutoCompleteBuilder in wicket 1.5.7 get is not a valid Serializable" error.

2012-08-29 Thread Vignesh Palanisamy
Hi martin, As well as i had implement the Serializable in Anonymous inner class (DefaultObjectAutoCompleteBuilder.class) of HomePage now the Exception didn't come but one warning message came like this. WARN - WebSession - Component-targetted feedback message was left

Re: ObjectAutoCompleteBuilder in wicket 1.5.7 get is not a valid Serializable" error.

2012-08-30 Thread Thomas Götz
Are all properties (fields) of HomePage$SearchOptions also Serializable? -Tom On 30.08.2012, at 03:17, Vignesh Palanisamy wrote: > while implementing Serializable also the same error came martin! > > > On Wed, Aug 29, 2012 at 6:17 PM, Martin Grigorov wrote: > >> This line says it all: >>

Re: ObjectAutoCompleteBuilder in wicket 1.5.7 get is not a valid Serializable" error.

2012-08-30 Thread Vignesh Palanisamy
This is the Class tom, private class SearchOptions implements Serializable { private String statusKey; public String getStatusKey() { return statusKey; } public void setStatusKey(String statusKey) { this.statusKey = stat

Re: ObjectAutoCompleteBuilder in wicket 1.5.7 get is not a valid Serializable" error.

2012-09-11 Thread James Eliyezar
Any updates regarding this? The issue filed in the wicketstuff issue tracker remains unanswered. On Thu, Aug 30, 2012 at 3:38 PM, Vignesh Palanisamy wrote: > This is the Class tom, > > private class SearchOptions implements Serializable > { >