I’ve got an application that uses both C# and Java and MSMQ. Technically the app is C# and MSMQ based with a need for a small Java component.
I’ve been using MSMQJava to serialize strings and integers from C# to Java.
Is there any library or technique out there that will allow me to serialize a C# object to a Java object?
I can keep the object very simple. Only string, double and integer values, no methods or references/pointers.
I would use JSON or XML. Both languages can handle those formats.