A Java EE application contains business logic composed of EJB beans. All current clients are Java applications accessing the business logic using RMI. Some clients are remote (running in different JVMs) and some are local (running in the same JVM). Which of the following two occur if EJB components are exposed as Web services? (Choose two.)
A.
New client applications can be built using the published WSDL to access existing business logic
B.
Current remote clients must switch from RMI to web service access.
C.
New remote clients can access business logic using RMI or web service access
D.
New local clients must access business logic using only RMI
E.
New clients must only be written in java to access business logic
A) is correct, WSDL could be generated VIA EJB interface/.
C) is correct, new client can invoke service VIA RMI or web service.