data tables and debugging session serialization

2007-11-13 Thread Evan Chooly
I'm having some strange behavior with a DataTable and the back button.
 When I back up to the page with the DT, it rerenders fine, but all my
object state is gone.  I click a link and the object is there but not
the ID in the the object so that I get hibernate errors trying to load
without an ID.  I have some suspicions about my model objects but I'm
not sure how to watch what gets stored in the session and what gets
pulled back out when the page is rerendered due to the back button.
Anyone have an idea of how I might track this down?  Thanks.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: data tables and debugging session serialization

2007-11-13 Thread Nick Heudecker
please unsubscribe :)

On Nov 13, 2007 8:59 AM, Evan Chooly [EMAIL PROTECTED] wrote:

 I'm having some strange behavior with a DataTable and the back button.
  When I back up to the page with the DT, it rerenders fine, but all my
 object state is gone.  I click a link and the object is there but not
 the ID in the the object so that I get hibernate errors trying to load
 without an ID.  I have some suspicions about my model objects but I'm
 not sure how to watch what gets stored in the session and what gets
 pulled back out when the page is rerendered due to the back button.
 Anyone have an idea of how I might track this down?  Thanks.

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




Re: data tables and debugging session serialization

2007-11-13 Thread Eelco Hillenius
Using Wicket 1.3?

Try setting break points in DiskPageStore (#getPage for instance) and
see if that gets you any further.

Eelco

On Nov 13, 2007 6:59 AM, Evan Chooly [EMAIL PROTECTED] wrote:
 I'm having some strange behavior with a DataTable and the back button.
  When I back up to the page with the DT, it rerenders fine, but all my
 object state is gone.  I click a link and the object is there but not
 the ID in the the object so that I get hibernate errors trying to load
 without an ID.  I have some suspicions about my model objects but I'm
 not sure how to watch what gets stored in the session and what gets
 pulled back out when the page is rerendered due to the back button.
 Anyone have an idea of how I might track this down?  Thanks.

 -
 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]



Re: data tables and debugging session serialization

2007-11-13 Thread Matej Knopp
You have something transient in your model. Or something implementing
Externalizable without properly serializing the properties.

-Matej

On Nov 13, 2007 3:59 PM, Evan Chooly [EMAIL PROTECTED] wrote:
 I'm having some strange behavior with a DataTable and the back button.
  When I back up to the page with the DT, it rerenders fine, but all my
 object state is gone.  I click a link and the object is there but not
 the ID in the the object so that I get hibernate errors trying to load
 without an ID.  I have some suspicions about my model objects but I'm
 not sure how to watch what gets stored in the session and what gets
 pulled back out when the page is rerendered due to the back button.
 Anyone have an idea of how I might track this down?  Thanks.

 -
 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]