You have been tasked to build a jar file that can be used by a Java SE client to access the remote
instance of the OrderProcessingBean. Given the following design:
Which classes would need to be included in the client jar file?
A.
B, Order
B.
A, Order
C.
A, B, Order
D.
A, B, Order, OrderProcessingBean
Explanation:
Note:
*An EJB client JAR file is an optional JAR file that can contain all the class files that a client
program needs to use the client view of the enterprise beans that are contained in the EJB JAR
file.*If all your EJBs are in the same EAR then you can use local interfaces, if not you need remote
interfaces.