You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: