Verified that that test case does indeed work using regular Java
serialization.

Main.java
---------------
import java.io.*;

public class Main
{
   public static void main(String [] args) throws Exception
   {
       PipedOutputStream output = new PipedOutputStream();
       PipedInputStream input = new PipedInputStream(output);

       ObjectOutputStream objWriter = new ObjectOutputStream(output);
       ObjectInputStream objReader = new ObjectInputStream(input);

       objWriter.writeObject(Foo.getData());
       Foo result = (Foo) objReader.readObject();

       System.out.println(result);
   }
}


On Sun, Apr 19, 2009 at 11:04 AM, Paul Robinson <[email protected]> wrote:

> I've created an issue for this:
> http://code.google.com/p/google-web-toolkit/issues/detail?id=3577
>
> The issue includes a complete code example demonstrating the problem
> (written for GWT 1.6.4), together with a detailed explanation of what
> happens during deserialization to cause the effect.
>
>
> Paul
>
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
http://groups.google.com/group/Google-Web-Toolkit-Contributors
-~----------~----~----~----~------~----~------~--~---

Reply via email to