I have a simple jruby+swt based client that collects data on an occasionally connected PC. Now I need to push those records to the server (Rails 2.3). Should I use ActiveMessaging, ActiveResources or Ruby XMLRPC.
This is my current understanding:
ActiveMessaging - best if server to client communication is needed
ActiveResources - hyper opinionated client to server CRUD
RubyXMLRPC - discontinued in Rails 2+. Flexible but lends itself to poor design.
I would a appreciate additional perspective, best practices, and the quick and dirty.
Thanks.