How to debug serialization issues?

2009-01-07 Thread rlaferla
How do you guys go about debugging serialization issues? I am using GWT 1.5.3 and my GWT client is sending a DTO to the server. If I do a Log.debug() just prior to the call to the server, I see all of my data in my DTO. However, when I do a log.debug() on my DTO in the GWT-RPC service, some of

Re: How to debug serialization issues?

2009-01-07 Thread todd.sei...@gmail.com
I override onBeforeRequestDeserialized and onAfterResponseSerialized in my servlets to view the raw data being passed in RPC. I have also used HashSet with generics and do not generally have problems. Once, I think it was in an earlier version of GWT, I needed to add any objects that I used

Re: How to debug serialization issues?

2009-01-07 Thread Lothar Kimmeringer
rlaferla schrieb: How do you guys go about debugging serialization issues? I am using GWT 1.5.3 and my GWT client is sending a DTO to the server. If I do a Log.debug() just prior to the call to the server, I see all of my data in my DTO. However, when I do a log.debug() on my DTO in the