Reputation: 73
I'd like to make an application for Android which uses JEE6. Is it possible to make an app which runs on a Glassfish (or other server) but with view in android app? Are there any frameworks or sth?
Upvotes: 1
Views: 247
Reputation: 181430
Yes, you need to make an API for your application in the JEE6 server. Then use whatever protocol you want to communicate through TCP/IP (I would strongly recommend you using HTTP for this).
Upvotes: 1