Why Asynchronous?

2010-05-18 Thread Emeric Heneffe
Hi! I need to know the exact reason why classes that's gonna be transfered from server side to client side must implements Serializable? It's written everywhere that they had to implement Serializable but never explain why??? Thank you.. -- You received this message because you are subscribed

Re: Why Asynchronous?

2010-05-18 Thread Emeric Heneffe
Thank you for answers.. everything is ok now... Regards On 18 mai, 22:43, Blessed Geek blessedg...@gmail.com wrote: Why asynchronous? This is a classic examination question in data communications. Why serializable? - another classic examination question. Classic - meaning that the

Re: Transfer problem from clien side to server side

2010-05-11 Thread Emeric Heneffe
Hello, The fact is that normally I had to use gilead to save pojos in a db. But, before using this, I had to transfer these pojo to server side. To do this, I use a simple rpc request with my classes that extend Serializable (and not IsSerializable because I don't want that my core package has

Re: Transfer problem from clien side to server side

2010-05-09 Thread Emeric Heneffe
Still no ideas? On 5 mai, 10:42, Emeric Heneffe emeric.hene...@gmail.com wrote: Hello, I'm using a gwt application and I have a problem when I send pojo from core module (not client package) to server side. Indeed, when I send any pojo with properties, in server side, all properties become

Transfer problem from clien side to server side

2010-05-06 Thread Emeric Heneffe
Hello, I'm using a gwt application and I have a problem when I send pojo from core module (not client package) to server side. Indeed, when I send any pojo with properties, in server side, all properties become null... Here is the configuration and the package I use : core.lib - librairies