Dominik Kamiński
Dominik Kamiński

Reputation: 73

Java Enterprise Application for Android

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

Answers (1)

Pablo Santa Cruz
Pablo Santa Cruz

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

Related Questions