How can you inject a target web service into an EJB?
How can you inject a target web service into an EJB?
To inject a target web service into an EJB, the most appropriate method is to use the javax.xml.ws.WebServiceRef annotation. This annotation is specifically designed for referencing a web service and gaining access to its methods within a client, such as an EJB.
C https://docs.oracle.com/cd/E16439_01/doc.1013/e13982/devannotation.htm
C is correct answer
Answer C