getObject is difficult, because you would need some explicit knowledge about the object being transferred in order to translate it from java to c#.
I recommend either using xml + serialization to a string with a text message, or implementing externalizable in java and a corresponding constructor in c#. In both cases, it has to be the responsibility of the client application to reconstruct the object from the message, because simple java serialization isn't available. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3949909#3949909 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3949909 _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
