Hi Alex,
As Mike mentioned, you'll want to use something like HTTPS if you're
transferring sensitive data over the wire.

GWT RPC serializes objects back and forth into JSON encoded data and
equivalent Java objects so that they can serialized / deserialized when
passed between the client and server. Although the JSON data is aggressively
optimized, it is not encrypted and can be seen in the clear by network
sniffers as it goes across the wire.

Therefore using SSL is a must if you're planning to transfer sensitive data
over the network.

Hope that helps,
-Sumit Chandel

On Fri, Oct 31, 2008 at 11:50 PM, Alex Luya <[EMAIL PROTECTED]>wrote:

>
> Hello
>        Everybody,I want to know,if I send a serialized object to
> server,you know it is be in the format of binary.Does this mean sniffers
> can not touch it,because it is binary.Is that right?If not,How can I
> send an encrypted object(hold password or other sensitive info) to
> server?Https or any other approach,thank you!
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to