SerializableChecker$WicketNotSerializableException: how to simulate

2010-08-11 Thread Thomas Singer
Hi, In our server logs we have a couple of WicketNotSerializableException logged, but we don't know when they occur. How we can create them locally in our development environment (to test whether we have avoided them)? Thanks in advance, Tom

Re: SerializableChecker$WicketNotSerializableException: how to simulate

2010-08-11 Thread Johan Compagner
doesnt the message of that exception tell you which object class is the problem? On Wed, Aug 11, 2010 at 09:24, Thomas Singer wic...@regnis.de wrote: Hi, In our server logs we have a couple of WicketNotSerializableException logged, but we don't know when they occur. How we can create them

Re: SerializableChecker$WicketNotSerializableException: how to simulate

2010-08-11 Thread Thomas Singer
: doesnt the message of that exception tell you which object class is the problem? On Wed, Aug 11, 2010 at 09:24, Thomas Singer wic...@regnis.de wrote: Hi, In our server logs we have a couple of WicketNotSerializableException logged, but we don't know when they occur. How we can create

Re: SerializableChecker$WicketNotSerializableException: how to simulate

2010-08-11 Thread Johan Compagner
On 11.08.2010 09:27, Johan Compagner wrote: doesnt the message of that exception tell you which object class is the problem? On Wed, Aug 11, 2010 at 09:24, Thomas Singer wic...@regnis.de wrote: Hi, In our server logs we have a couple of WicketNotSerializableException logged, but we don't know when

Re: SerializableChecker$WicketNotSerializableException: how to simulate

2010-08-11 Thread Thomas Singer
: Hi, In our server logs we have a couple of WicketNotSerializableException logged, but we don't know when they occur. How we can create them locally in our development environment (to test whether we have avoided them)? Thanks in advance, Tom

Re: SerializableChecker$WicketNotSerializableException: how to simulate

2010-08-11 Thread Johan Compagner
: Hi, In our server logs we have a couple of WicketNotSerializableException logged, but we don't know when they occur. How we can create them locally in our development environment (to test whether we have avoided them)? Thanks in advance, Tom

Re: SerializableChecker$WicketNotSerializableException: how to simulate

2010-08-11 Thread Thomas Singer
I want to know how I can generate this exception in my development environment. It is nasty to test on the production system. Tom On 11.08.2010 10:53, Johan Compagner wrote: why not? if you know which page it was and which component/model that holds that none serializable class then you

Re: SerializableChecker$WicketNotSerializableException: how to simulate

2010-08-11 Thread Johan Compagner
the only way to do this is as i described look where the exception really comes from and go to that same page in your developer, do as your user does. There is no other way, you really need to be in the same state. On Wed, Aug 11, 2010 at 13:24, Thomas Singer wic...@regnis.de wrote: I want to

Re: SerializableChecker$WicketNotSerializableException: how to simulate

2010-08-11 Thread Thomas Singer
When exactly the serialization happens? When viewing a page? Tom On 11.08.2010 13:25, Johan Compagner wrote: the only way to do this is as i described look where the exception really comes from and go to that same page in your developer, do as your user does. There is no other way, you

Re: SerializableChecker$WicketNotSerializableException: how to simulate

2010-08-11 Thread Johan Compagner
after viewing a page, when the page gets serialized But you could also trigger it your self, for example you can have something in the detach() of your base page super.onDetach() if (development) { Objects.objectToByteArray(this) } then you should get the same error right away On Wed, Aug

Re: Why does SerializableChecker throw WicketNotSerializableException on guice injected non Serializable class ?

2010-06-02 Thread Joseph Pachod
]] org.apache.wicket.util.io.SerializableChecker$WicketNotSerializableException: Unable to serialize class: org.demo.DecoratorFactoryImpl Field hierarchy is: 0 [class=org.demo.HomePage, path=0] private java.lang.Object org.apache.wicket.MarkupContainer.children [class=[Ljava.lang.Object;] private java.lang.Object

Re: Why does SerializableChecker throw WicketNotSerializableException on guice injected non Serializable class ?

2010-06-02 Thread Joseph Pachod
this: ERROR - Objects- Error serializing object class org.demo.HomePage [object=[Page class = org.demo.HomePage, id = 0, version = 0]] org.apache.wicket.util.io.SerializableChecker$WicketNotSerializableException: Unable to serialize class: org.demo.DecoratorFactoryImpl Field hierarchy

Re: Why does SerializableChecker throw WicketNotSerializableException on guice injected non Serializable class ?

2010-06-02 Thread Martijn Dashorst
On Wed, Jun 2, 2010 at 10:21 AM, Joseph Pachod j...@thomas-daily.de wrote: Forget it, the inner class being part of the injected class wasn't in fact static... that the reason for this issue sorry for the noise And that is why quickstarts are a godsend! Not only does it make it easier for

Re: Why does SerializableChecker throw WicketNotSerializableException on guice injected non Serializable class ?

2010-06-02 Thread Joseph Pachod
And that is why quickstarts are a godsend! Not only does it make it easier for us to solve a bug and distill a test case from it, it also makes it trivial to find bugs in one's own code (and often solving the question automatically) Martijn Indeed ! It'll teach thinking I've cornered the

Why does SerializableChecker throw WicketNotSerializableException on guice injected non Serializable class ?

2010-06-01 Thread Joseph Pachod
hi In a form, I'm injecting a factory through guice. The factory's interface doesn't extend Serializable, as well as the implementation. Then the SerializableChecker throws org.apache.wicket.util.io.SerializableChecker$WicketNotSerializableException: Unable to serialize class

Re: Why does SerializableChecker throw WicketNotSerializableException on guice injected non Serializable class ?

2010-06-01 Thread nino martinez wael
$WicketNotSerializableException: Unable to serialize class: com.softculture.core.dataseries.morphia.wicket.DefaultDecoratorFactory I was assuming that such a class wouldn't need to be Serializable, since it was never serialized done thanks to guice injection... Am I wrong ? thanks in advance

Re: Why does SerializableChecker throw WicketNotSerializableException on guice injected non Serializable class ?

2010-06-01 Thread Martijn Dashorst
injecting a factory through guice. The factory's interface doesn't extend Serializable, as well as the implementation. Then the SerializableChecker throws org.apache.wicket.util.io.SerializableChecker$WicketNotSerializableException: Unable to serialize class

Re: Why does SerializableChecker throw WicketNotSerializableException on guice injected non Serializable class ?

2010-06-01 Thread Joseph Pachod
nino martinez wael wrote: did you mark it transient? I didn't expect it to be necessary since the wicket guice proxy is still serializable (in the way that it handles serialization of its own) but could be done yes best joseph

Re: Why does SerializableChecker throw WicketNotSerializableException on guice injected non Serializable class ?

2010-06-01 Thread Joseph Pachod
Martijn Dashorst wrote: You need to use the Wicket injector for guice. That will create a serializable proxy for the service. Guice itself doesn't know about Wicket, so you can't expect it to magically work. Martijn sorry, I didn't provide enough context: I'm using wicket-guice (on 1.4.9). So

Re: Why does SerializableChecker throw WicketNotSerializableException on guice injected non Serializable class ?

2010-06-01 Thread yaniv kessler
Joseph, I believe what Martijn meant was that you need to use GuiceComponentInjectorhttp://wicket.apache.org/docs/1.4/org/apache/wicket/guice/GuiceComponentInjector.html. This class will handle the serialization stuff in components for you. You can find more details in these place (and in

Re: Why does SerializableChecker throw WicketNotSerializableException on guice injected non Serializable class ?

2010-06-01 Thread Martijn Dashorst
Then we could use a longer trace from the serialization exception... Plus some code to go with it. The best way would be to create a minimal setup using a quickstart exhibiting the problem. Martijn On Tue, Jun 1, 2010 at 12:47 PM, Joseph Pachod j...@thomas-daily.de wrote: Martijn Dashorst

Re: Why does SerializableChecker throw WicketNotSerializableException on guice injected non Serializable class ?

2010-06-01 Thread yaniv kessler
I just went to check 1.4.9 change list and I didn't see anything related to the way IOC works (at least from 1.4.8 which is what I'm using right now), or did I miss something in this thread or there in the release notes ? :) On Tue, Jun 1, 2010 at 9:43 PM, Martijn Dashorst

Re: Wicket 1.4 + GF v2.1 causing WicketNotSerializableException

2009-11-19 Thread VGJ
org.apache.wicket.util.lang.Objects - Error serializing object class com.myapp.ui.Cart [object=[Page class = com.myapp.ui.Cart, id = 3, version = 0]] org.apache.wicket.util.io.SerializableChecker$WicketNotSerializableException: Unable to serialize class

Re: Wicket 1.4 + GF v2.1 causing WicketNotSerializableException

2009-11-19 Thread Igor Vaynberg
, version = 0]] org.apache.wicket.util.io.SerializableChecker$WicketNotSerializableException: Unable to serialize class: com.sun.ejb.containers.EJBLocalObjectInvocationHandlerDelegate Field hierarchy is:  3 [class=com.myapp.ui.Cart, path=3]    private java.lang.Object

Re: Wicket 1.4 + GF v2.1 causing WicketNotSerializableException

2009-11-19 Thread VGJ
[httpSSLWorkerThread-8080-1] ERROR org.apache.wicket.util.lang.Objects - Error serializing object class com.myapp.ui.Cart [object=[Page class = com.myapp.ui.Cart, id = 3, version = 0]] org.apache.wicket.util.io.SerializableChecker$WicketNotSerializableException: Unable to serialize

Re: Wicket 1.4 + GF v2.1 causing WicketNotSerializableException

2009-11-19 Thread Igor Vaynberg
[httpSSLWorkerThread-8080-1] ERROR org.apache.wicket.util.lang.Objects - Error serializing object class com.myapp.ui.Cart [object=[Page class = com.myapp.ui.Cart, id = 3, version = 0]] org.apache.wicket.util.io.SerializableChecker$WicketNotSerializableException: Unable to serialize

Re: Wicket 1.4 + GF v2.1 causing WicketNotSerializableException

2009-11-19 Thread VGJ
: 25717 [httpSSLWorkerThread-8080-1] ERROR org.apache.wicket.util.lang.Objects - Error serializing object class com.myapp.ui.Cart [object=[Page class = com.myapp.ui.Cart, id = 3, version = 0]] org.apache.wicket.util.io.SerializableChecker$WicketNotSerializableException

Re: Wicket 1.4 + GF v2.1 causing WicketNotSerializableException

2009-11-19 Thread Igor Vaynberg
= com.myapp.ui.Cart, id = 3, version = 0]] org.apache.wicket.util.io.SerializableChecker$WicketNotSerializableException: Unable to serialize class: com.sun.ejb.containers.EJBLocalObjectInvocationHandlerDelegate Field hierarchy is:  3 [class=com.myapp.ui.Cart, path=3

Re: Wicket 1.4 + GF v2.1 causing WicketNotSerializableException

2009-11-19 Thread Jeremy Thomerson
$WicketNotSerializableException: Unable to serialize class: com.sun.ejb.containers.EJBLocalObjectInvocationHandlerDelegate Field hierarchy is: 3 [class=com.myapp.ui.Cart, path=3] private java.lang.Object org.apache.wicket.MarkupContainer.children [class

Re: Wicket 1.4 + GF v2.1 causing WicketNotSerializableException

2009-11-19 Thread VGJ
] ERROR org.apache.wicket.util.lang.Objects - Error serializing object class com.myapp.ui.Cart [object=[Page class = com.myapp.ui.Cart, id = 3, version = 0]] org.apache.wicket.util.io.SerializableChecker$WicketNotSerializableException: Unable to serialize

Re: Wicket 1.4 + GF v2.1 causing WicketNotSerializableException

2009-11-19 Thread Igor Vaynberg
class com.myapp.ui.Cart [object=[Page class = com.myapp.ui.Cart, id = 3, version = 0]] org.apache.wicket.util.io.SerializableChecker$WicketNotSerializableException: Unable to serialize class: com.sun.ejb.containers.EJBLocalObjectInvocationHandlerDelegate

Re: Wicket 1.4 + GF v2.1 causing WicketNotSerializableException

2009-11-19 Thread VGJ
= com.myapp.ui.Cart, id = 3, version = 0]] org.apache.wicket.util.io.SerializableChecker$WicketNotSerializableException: Unable to serialize class: com.sun.ejb.containers.EJBLocalObjectInvocationHandlerDelegate Field hierarchy is: 3 [class

Wicket 1.4 + GF v2.1 causing WicketNotSerializableException

2009-11-18 Thread VGJ
]] org.apache.wicket.util.io.SerializableChecker$WicketNotSerializableException: Unable to serialize class: com.sun.ejb.containers.EJBLocalObjectInvocationHandlerDelegate Field hierarchy is: 3 [class=com.myapp.ui.Cart, path=3] private java.lang.Object org.apache.wicket.MarkupContainer.children [class=[Ljava.lang.Object

Re: Wicket 1.4 + GF v2.1 causing WicketNotSerializableException

2009-11-18 Thread Pieter Degraeuwe
org.apache.wicket.util.lang.Objects - Error serializing object class com.myapp.ui.Cart [object=[Page class = com.myapp.ui.Cart, id = 3, version = 0]] org.apache.wicket.util.io.SerializableChecker$WicketNotSerializableException: Unable to serialize class

Re: Wicket 1.4 + GF v2.1 causing WicketNotSerializableException

2009-11-18 Thread Igor Vaynberg
serializing object class com.myapp.ui.Cart [object=[Page class = com.myapp.ui.Cart, id = 3, version = 0]] org.apache.wicket.util.io.SerializableChecker$WicketNotSerializableException: Unable to serialize class: com.sun.ejb.containers.EJBLocalObjectInvocationHandlerDelegate Field hierarchy is:  3

Re: SerializableChecker$WicketNotSerializableException:

2009-10-12 Thread Peter Ertl
suggestion: load your data and keep it in a cache use LDM to retrieve the data from the cache (e.g. ehcache) or reload it if it expired. Am 10.10.2009 um 19:46 schrieb Igor Vaynberg: if you do not need to hold on to the data structure between requests then there is no need to keep any

Re: SerializableChecker$WicketNotSerializableException:

2009-10-10 Thread Ceki Gulcu
Eelco Hillenius wrote: I've looked at it briefly. The main thing you need to keep in mind is that it unfortunately is a limitation of Wicket that you can't have references in Components that aren't serializable (unless you don't care about back button support and turn of the second level

Re: SerializableChecker$WicketNotSerializableException:

2009-10-10 Thread Ceki Gulcu
Igor Vaynberg wrote: On Fri, Oct 9, 2009 at 1:41 PM, Ceki Gulcu c...@qos.ch wrote: Anyway, my application handles a complex tree-like structure, with almost all of the contents non-serializable and outside my control. I don't think I can use a Loadable Detachable Model, because loading the

Re: SerializableChecker$WicketNotSerializableException:

2009-10-10 Thread Igor Vaynberg
what is the lifecycle of this data? when do you no longer need to store it? if this is runtime data you can create a runtime store for it, even a simple map can do. this map can live in servlet context, spring context, as a field of your wicket application, etc. the user pages can then retrieve

Re: SerializableChecker$WicketNotSerializableException:

2009-10-10 Thread Igor Vaynberg
in other words, if you were building this app using jsps or servlets how would you carry over this data structure between requests? -igor On Sat, Oct 10, 2009 at 9:09 AM, Igor Vaynberg igor.vaynb...@gmail.com wrote: what is the lifecycle of this data? when do you no longer need to store it?

Re: SerializableChecker$WicketNotSerializableException:

2009-10-10 Thread Ceki Gulcu
Igor Vaynberg wrote: in other words, if you were building this app using jsps or servlets how would you carry over this data structure between requests? No, I actually would not carry the data between requests. When the page is requested, I would run my test suite to compute the results.

Re: SerializableChecker$WicketNotSerializableException:

2009-10-10 Thread Igor Vaynberg
if you do not need to hold on to the data structure between requests then there is no need to keep any references to it in the components themselves. pass it into the constructor, create whatever components you need to represent it in the ui and throw it away. you may have to create wrappers

SerializableChecker$WicketNotSerializableException:

2009-10-09 Thread Ceki Gulcu
]] org.apache.wicket.util.io.SerializableChecker$WicketNotSerializableException: \ Unable to serialize class: org.junit.runner.Description Field hierarchy is: 4 [class=ch.qos.mistletoe.wicket.Tree, path=4] private java.lang.Object org.apache.wicket.MarkupContainer.children [class

Re: SerializableChecker$WicketNotSerializableException:

2009-10-09 Thread Eelco Hillenius
it if you like. Eelco  ch.qos.mistletoe.wicket.Tree     [object=[Page class = ch.qos.mistletoe.wicket.Tree, id = 4 version = 0]] org.apache.wicket.util.io.SerializableChecker$WicketNotSerializableException: \  Unable to serialize class: org.junit.runner.Description Field hierarchy is:  4 [class

Re: SerializableChecker$WicketNotSerializableException:

2009-10-09 Thread Ceki Gulcu
Eelco Hillenius wrote: Hi, It looks like GenericBaseModel has a reference to a JUnit Description? Maybe you can paste your GenericBaseModel class here? Fortunately, my application is open source. You can find its source code at http://github.com/ceki/mistletoe If you look at the

Re: SerializableChecker$WicketNotSerializableException:

2009-10-09 Thread Eelco Hillenius
I've looked at it briefly. The main thing you need to keep in mind is that it unfortunately is a limitation of Wicket that you can't have references in Components that aren't serializable (unless you don't care about back button support and turn of the second level session cache, OR you plug in

Re: SerializableChecker$WicketNotSerializableException:

2009-10-09 Thread Eelco Hillenius
Btw, this whole serialization problem is exactly why we have detachable models (though they obviously don't solve every problem out there. Be sure to read up on those while you're at it. Eelco On Fri, Oct 9, 2009 at 3:12 PM, Eelco Hillenius eelco.hillen...@gmail.com wrote: I've looked at it

Re: SerializableChecker$WicketNotSerializableException:

2009-10-09 Thread Igor Vaynberg
On Fri, Oct 9, 2009 at 1:41 PM, Ceki Gulcu c...@qos.ch wrote: Anyway, my application handles a complex tree-like structure, with almost all of the contents non-serializable and outside my control. I don't think I can use a Loadable Detachable Model, because loading the tree may take several

WicketNotSerializableException

2009-07-29 Thread David Brown
: org.apache.wicket.util.io.SerializableChecker$WicketNotSerializableException: Unable to serialize class: java.lang.Object I have tried using strategic placement of: transient and static but of no use. Regards, David

Re: WicketNotSerializableException

2009-07-29 Thread Jeremy Thomerson
: org.apache.wicket.util.io.SerializableChecker$WicketNotSerializableException: Unable to serialize class: java.lang.Object I have tried using strategic placement of: transient and static but of no use. Regards, David. - To unsubscribe, e-mail

Re: WicketNotSerializableException

2009-07-29 Thread David Brown
: WicketNotSerializableException Can you show the code? When you create an anonymous inner class, it gets references to variables that are outside of the declaration. -- Jeremy Thomerson http://www.wickettraining.com On Wed, Jul 29, 2009 at 5:46 PM, David Browndbr...@sexingtechnologies.com wrote: Hello, I have

Re: WicketNotSerializableException

2009-01-20 Thread Thomas Singer
? -igor On Mon, Jan 19, 2009 at 5:47 AM, Thomas Singer wic...@regnis.de wrote: On our webserver I'm getting WicketNotSerializableException in the log, but I never got them locally. What should I do to trigger them in my local test server? Thanks in advance, Tom

Re: WicketNotSerializableException

2009-01-20 Thread Igor Vaynberg
On Mon, Jan 19, 2009 at 5:47 AM, Thomas Singer wic...@regnis.de wrote: On our webserver I'm getting WicketNotSerializableException in the log, but I never got them locally. What should I do to trigger them in my local test server? Thanks in advance, Tom

Re: WicketNotSerializableException

2009-01-20 Thread Thomas Singer
the stacktrace look like? -igor On Mon, Jan 19, 2009 at 5:47 AM, Thomas Singer wic...@regnis.de wrote: On our webserver I'm getting WicketNotSerializableException in the log, but I never got them locally. What should I do to trigger them in my local test server? Thanks in advance, Tom

Re: WicketNotSerializableException

2009-01-20 Thread Igor Vaynberg
) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:685) at java.lang.Thread.run(Thread.java:619) Tom Igor Vaynberg wrote: what does the stacktrace look like? -igor On Mon, Jan 19, 2009 at 5:47 AM, Thomas Singer wic...@regnis.de wrote: On our webserver I'm getting WicketNotSerializableException

WicketNotSerializableException

2009-01-19 Thread Thomas Singer
On our webserver I'm getting WicketNotSerializableException in the log, but I never got them locally. What should I do to trigger them in my local test server? Thanks in advance, Tom - To unsubscribe, e-mail: users-unsubscr

Re: WicketNotSerializableException

2009-01-19 Thread Igor Vaynberg
what does the stacktrace look like? -igor On Mon, Jan 19, 2009 at 5:47 AM, Thomas Singer wic...@regnis.de wrote: On our webserver I'm getting WicketNotSerializableException in the log, but I never got them locally. What should I do to trigger them in my local test server? Thanks in advance

Re: WicketNotSerializableException

2009-01-19 Thread Thomas Singer
WicketNotSerializableException in the log, but I never got them locally. What should I do to trigger them in my local test server? Thanks in advance, Tom - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: WicketNotSerializableException

2009-01-19 Thread Igor Vaynberg
(ThreadPool.java:685) at java.lang.Thread.run(Thread.java:619) Tom Igor Vaynberg wrote: what does the stacktrace look like? -igor On Mon, Jan 19, 2009 at 5:47 AM, Thomas Singer wic...@regnis.de wrote: On our webserver I'm getting WicketNotSerializableException in the log, but I never got

Re: WicketNotSerializableException

2009-01-19 Thread jWeekend
: what does the stacktrace look like? -igor On Mon, Jan 19, 2009 at 5:47 AM, Thomas Singer wic...@regnis.de wrote: On our webserver I'm getting WicketNotSerializableException in the log, but I never got them locally. What should I do to trigger them in my local test server? Thanks

Re: WicketNotSerializableException

2009-01-19 Thread Serkan Camurcuoglu
and it was corrected (I started seeing more wicket logs) when I deployed my application into a clean tomcat with only the necessary jars.. Thomas Singer-4 wrote: On our webserver I'm getting WicketNotSerializableException in the log, but I never got them locally. What should I do to trigger them

ValueMap, NullSafeKeyComparator and WicketNotSerializableException

2008-06-12 Thread Matthew Hanlon
I'm getting a WicketNotSerializableException on a couple of my pages. The field that seems to be not serializable appears to be a Wicket class, org.apache.wicket.util.value.ValueMap$NullSafeKeyComparator. Any suggestions? I saw a posting on the list earlier today that I though may have

Re: ValueMap, NullSafeKeyComparator and WicketNotSerializableException

2008-06-12 Thread Matthew Hanlon
Sorry, forgot to mention that I'm using wicket 1.4-SNAPSHOT, rev 667063. On Thu, Jun 12, 2008 at 4:18 PM, Matthew Hanlon [EMAIL PROTECTED] wrote: I'm getting a WicketNotSerializableException on a couple of my pages. The field that seems to be not serializable appears to be a Wicket class

Re: ValueMap, NullSafeKeyComparator and WicketNotSerializableException

2008-06-12 Thread Frank Bille
a WicketNotSerializableException on a couple of my pages. The field that seems to be not serializable appears to be a Wicket class, org.apache.wicket.util.value.ValueMap$NullSafeKeyComparator. Any suggestions? I saw a posting on the list earlier today that I though may have something to do

Re: ValueMap, NullSafeKeyComparator and WicketNotSerializableException

2008-06-12 Thread Frank Bille
12, 2008 at 4:18 PM, Matthew Hanlon [EMAIL PROTECTED] wrote: I'm getting a WicketNotSerializableException on a couple of my pages. The field that seems to be not serializable appears to be a Wicket class, org.apache.wicket.util.value.ValueMap$NullSafeKeyComparator. Any suggestions? I

Re: WicketNotSerializableException

2008-01-22 Thread Joshua Jackson
Hi All, I have take a loot at this. But is there any solution to fix this without using @SpringBean since I am still on JDK1.4. Thanks in advance On Dec 17, 2007 7:50 PM, Evan Chooly [EMAIL PROTECTED] wrote: it's the ApplicationContextFacade that can't be serialized. you'll need to mark this

Re: WicketNotSerializableException

2008-01-22 Thread Igor Vaynberg
see SpringWebApplcation, it has methods to create same proxies @SpringBean does. -igor On Jan 22, 2008 8:27 PM, Joshua Jackson [EMAIL PROTECTED] wrote: Hi All, I have take a loot at this. But is there any solution to fix this without using @SpringBean since I am still on JDK1.4. Thanks in

Re: WicketNotSerializableException withi FileUpload

2007-11-09 Thread James Perry
class com.wicketcart.pages.admin.AddProductPage [object=[Page class = com.wicketcart.pages.admin.AddProductPage, id = 2, version = 0]] org.apache.wicket.util.io.SerializableChecker$WicketNotSerializableException: Unable to serialize class

Re: WicketNotSerializableException withi FileUpload

2007-11-08 Thread Johan Compagner
$WicketNotSerializableException: Unable to serialize class: org.apache.wicket.util.io.DeferredFileOutputStream Field hierarchy is: 2 [class=com.wicketcart.pages.admin.AddProductPage, path=2] private java.lang.Object org.apache.wicket.MarkupContainer.children [class

Re: WicketNotSerializableException withi FileUpload

2007-11-07 Thread Johan Compagner
a org.apache.wicket.util.io.SerializableChecker$WicketNotSerializableException: Unable to serialize class: org.apache.wicket.util.io.DeferredFileOutputStream exception when I added a file upload feature to my AddProductForm. My form is serialiazable yet I don't which of its child components are not serializable. Can

WicketNotSerializableException withi FileUpload

2007-11-06 Thread James Perry
Hello fellow Wicket users, I am getting a org.apache.wicket.util.io.SerializableChecker$WicketNotSerializableException: Unable to serialize class: org.apache.wicket.util.io.DeferredFileOutputStream exception when I added a file upload feature to my AddProductForm. My form is serialiazable yet I