This content has been marked as final.
Show 1 reply
-
1. Re: Is it possible to make local JNDI lookup between different EARs on same Wildfly?
wdfink Jan 31, 2017 4:44 AM (in response to oleggritsak)So your ... provide only a local business interface?
In this case the Local interface is only available inside of the same ear file (according to the spec it is optional to use a wider scope here and not implemented).
You need to implement the Remote interface to be able to look it up from a different application ear/jar.
With Wildfly the invocation is optimized by default and the invocation is "by reference" if you not set the configuration back to "call by value".