I’ve seen a few posts about this issue, but most of them are old and differ a bit from my question.
I chose to implement an Android application with RMI for a project that I work on. I created the server with some methods (like login and register using JDBC), and decided to write the client code in the Android application. I just now realize that RMI isn’t available in Android.
What is the simplest, easiest way to replace the RMI architecture? LipeRMI doesn’t seem easy to use.
I thought on using ServerSocket in a way that the client sends the server a message on what method he wants to activate but it seems like a really bad idea.