What is the standard way to use RPC in Android? The official way to do RPC in Android seems for me AIDL. Is that correct?
First of all I am quite new to Android. But the start is good. I am warming up with the functions I already know from Java. Now I want to go further and use some advanced techniques with some of my already existing software in Java.
Here’s the scenario. I have a little Java server which runs an object orientated version of RPCs called SIMON. Now I want to combine it with Android. Means on an Android device I want to run a little app as client which gets its information from my server.
I read some instructions to program a client and a server for android. But both are running on android which I don’t want to.
Does anybody know how to combine RPC between Android and Java? Maybe some links or hints in which direction I can search should do the trick. Right now I am a little bit lost and combine these two worlds.
I have already came across REST, JSON, XML-RPC, SOAP who needs external libraries I don’t want to use. I want to stick with the standard way of Android to keep it “Original” Android. Whatever. The pure Android code is my goal in this stage.