One more thing: my J2ME client has connected to the Windows server and uploaded its data, which has then been processed. I now want to return data to the phone, which uses the following and expects a reply:
Operation getOperation = clientSession.get(replySet);
DataInputStream dis = getOperation.openDataInputStream();
... do stuff with "dis" ...
getOperation.close();
Both "Operation"s are inside one ClientSession connection, so I shouldn't need to disconnect before replying, right?
Which component can I use to send a message back to the phone? Can the ObjectPushServer do it?