I'm currently trying to learn how to use Android with an existing Java based system. Basically, I need to communicate with / from an Android application.
Currently, the system transfers object data from computer to computer using ActiveMQ as a JMS provider. On one of the computers a display is displayed that shows the object data to the user.
Now we want to use a phone (running Android) as another option for displaying object data to a user with network / network access.
Ideally, we would like to have our own Android application that will listen to the ActiveMQ topic and publish to another topic, as well as read / write / display object data, but from some studies that I did, I'm not sure if this is possible.
What are other ways to solve this problem? An Android phone should be able to send / receive data. I am using AndroidEmulator for testing.
source share