Hello,
I have a problem. After upgrading to 2.1 RC1 from 2.1 M1 using "wide"
codepoints (the ones represented by two surrogate characters) stopped
working correctly for me. The "𝓟" character, after being deserialized
in dev mode, becomes some junk character (one-char wide). The
serialized form is the same in the serialized form as in the working
version ("\uD835\uDCDF"), so I guess something goes wrong in
deserialization.
I don't know if that's important, but I'm using a "prefetching"
technique to load data to the app without an additional round-trip to
the server, using this on code the client:
public Object getPrefetched(String s) {
SerializationStreamFactory factory =
(SerializationStreamFactory)rpcService;
try {
return factory.createStreamReader(s).readObject();
} catch (SerializationException e) {
return null;
}
}
Do you have any idea about what is causing this?
Thanks in advance,
Marek Materzok
--
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.