jakartaee / enterprise-beans

Jakarta Enterprise Beans
https://eclipse.org/ee4j/ejb
Other
19 stars 29 forks source link

Extend EJB and Standardized EJB Client Api #113

Open gergelymolnarpro opened 4 years ago

gergelymolnarpro commented 4 years ago

Server to server (different vm and host) connection Server to client (java se api)(different vm and host)

Easy way via jax-rs: create/generate rest service to EJB remote if annotated: @Remote(jaxRsPath="/example") (if empty that is not allowed) or @Remote(jaxRsConfigClass=Example.class)

Security: basic authentication and client cert authentication is already defined.

Client easy way: use MicroProfile Rest Client or own api to provide lower layer to access EJB Remote at Java SE.