vote up 0 vote down star

I was wondering if anyone had some resources that describe the binary protocol used by ObjectOutputStream. I realize of course that objects themselves can specify what their data by implementing the Externalizable interface, so I guess I'm looking more toward the structure of the object graph - the metadata if you will.

I am writing a C program that has to talk to a legacy Java program. I have no way to change either of these requirements so find myself reverse engineering the ObjectOutputStream protocol. (Their is a server that uses HTTP for transport and returns Object*Stream as the HTTP response.)

However, I feel like someone else out there has to have done this work before. Can you point to any resources to speed up my work?

flag

How are you going to talk to the Java program? Is there a server , serving the app? – Oscar Reyes Oct 15 '08 at 20:34

1 Answer

vote up 2 vote down check

http://java.sun.com/javase/6/docs/technotes/guides/serialization/index.html

and from there

http://java.sun.com/javase/6/docs/platform/serialization/spec/protocol.html

link|flag
I'm indebted to you. I could not find this information! You saved me so much pain... – Frank Krueger Oct 15 '08 at 20:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.