yanchenko
yanchenko

Reputation: 57156

Suggestion on remoting (rpc, rmi) for Java SE client-server app?

I'm absolutely in love with the way GWT does RPC. Is there anything similar for Java SE you have experience with that:

  1. Is not spring
  2. Doesn't require a Java EE/Servlet container to run the server side
  3. Is not RMI that comes with Java SE

Upvotes: 0

Views: 360

Answers (5)

marcospereira
marcospereira

Reputation: 12214

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

Upvotes: 2

refuess
refuess

Reputation: 21

Did you try sfnrpc (http://code.google.com/p/sfnrpc) No spring required. You can run multiple servers within same JVM You can have a client connect to multiple servers also. No event style programming, but supports asynch and synch calls over nio.

Upvotes: 0

yanchenko
yanchenko

Reputation: 57156

POJ (Plain Old JSON).

Upvotes: 0

bhavanki
bhavanki

Reputation: 1527

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

Upvotes: 2

Jasper
Jasper

Reputation: 846

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

Upvotes: 1

Related Questions