Dave
Dave

Reputation: 203

Building a server to an android application

I checked this thread which actually looks for the same thing that i look - but he didnt got answered. What i'm looking for is a way to connect between server (as a java application) and a client (as a android application) - in a way that the client will be able to call remote methods in the server, and get remote objects from the server. (doesn't matter if it uses AIDL or not..)

I worked with RMI and it's fine - but it unnable to use on Android, so i have to find another way.

Thanks for help!

Upvotes: 0

Views: 79

Answers (1)

ethrbunny
ethrbunny

Reputation: 10469

Two possible avenues:

  1. Use servlets on the server and pass data via GET/POST
  2. JAX - pass data via SOAP requests

I'm sure there are others, too.

Upvotes: 1

Related Questions