|

02-02-2009, 03:48 AM
Unless JME supports RMI or plain old ObjectInputStream and ObjectOutputStream (so you can roll your own mechanism) you're out of luck.
I'm not familiar enough with the limitations of the JME API to be able to tell you whether those options are available.
If they're not, you will have to suffice with transmitting object state in some form and rebuilding the objects from scratch at the receiving end.
This will of course break any relation between the objects at either end (as does using Object<Input><Output>Stream, so you'll have to take care of keeping them in synch (if so desired) manually.
|