Re: real gwt serialization

2010-05-29 Thread Sripathi Krishnan
@Kozura - No, not a constant. A constant is hard-coded data. Instead, you need the ability to dynamically generate data, serialize it and store it in the host jsp. Take a look at this blog post - http://www.techhui.com/profiles/blogs/simpler-and-speedier-gwt-with and a follow-up by folks at

real gwt serialization

2010-05-28 Thread rjcarr
So I understand gwt's rpc serialization and I've been using it for quite some time. However, I'm wondering if there is a manual javascript serialization? Let me explain ... Passing things over rpc works great for dynamic data, but what if you have initialization data that doesn't change? Since

Re: real gwt serialization

2010-05-28 Thread kozura
Sounds like you just want a constant, can you just create the objects as static finals in your client code? No serialization or any such needed, just comes as part of the code. On May 28, 4:38 pm, rjcarr rjc...@gmail.com wrote: So I understand gwt's rpc serialization and I've been using it for