tags:

views:

150

answers:

4

Hi. I'm absolutely in love with the way GWT does rpc. Is there anything similar for JSE you have experience with that: a) is not spring b) doesn't require a jee/servlet container to run the server side c) is not rmi that comes with jse TIA.

+1  A: 

If you want something like distributed computing you could have a look at the cajo project.

Jasper
+2  A: 

Apache Mina. Not true rpc but easy to use and surely a option to consider.

Kind Regards

marcospereira
+2  A: 

Maybe Jini. Not Spring- or EJB-related, doesn't run in a container, and you can pick the transport.

shockwave
A: 

POJ (Plain Old JSON).

alex