Suppose an EJB component is named HelloWorldBean is deployed as a standalone ejb-jar.
Assuming the HelloWorldBean is implemented as follows:
Which types of clients are guaranteed to have access to HelloWorldBean:
A.
Java EE application client container applications
B.
Java EE ejb components within the same ejb-jar
C.
Java EE web-tier component applications deployed in the same container
D.
Java EE ejb component applications deployed in the same container
B
B, it must be called locally as it uses no-interface view
exactly, it’s no-interface view so only B is correct.
No interface view => B