eliocs
eliocs

Reputation: 18827

Offering EJB to clients using HTTP

I'm developing a server to offer persistence to clients connecting through http. The clients will be based on different technologies: web, iphone and android; that is why I thought of using http in the first place (may be there is a better approach).

In the server I'm using a javaee 6 implementation with EJBs and JPA to achieve my persistence goal and servlets to offer access to the EJBs interfaces to the clients. The servlets are just dummy proxies, so I'm sure there has to be a framework or a better way of offering my EJB as a service to my clients.

I'm trying to find a way of avoiding all the dummy proxy servlets.

Upvotes: 0

Views: 71

Answers (1)

Jon
Jon

Reputation: 365

You could implement RESTful Web Services with JAX-RS

Upvotes: 1

Related Questions