anion155
anion155

Reputation: 87

Java. Creating server-client application

I want to make application with server, web-client and desktop-client.

Can I use Glassfish's app for this kind of server or only as web-client?

Upvotes: 0

Views: 313

Answers (1)

Yes. In Java EE a desktop client (which can exchange data easily with the application server) is called an enterprise application client.

See https://netbeans.org/kb/docs/javaee/entappclient.html for a short tutorial with Netbeans.

A side note: if you want to work a lot with Glassfish consider doing it in Netbeans. The integration is much better than in Eclipse.

Upvotes: 1

Related Questions