Which of the following is NOT a correct way of configuring handlers on a Web Service client ?
(Choose one)
A.
Specify the handlers in jaxws-catalog.xml and make it available in the classpath of the client
B.
Create a handlerchain as list of handlers and call setHandlerChain() with that list on the Binding
object.
C.
Programmatically configure the handlers by setting a custom HandlerResolver on the service
instance and create proxies from that service.
D.
Specify handlers in handler chain configuration XML file and add @HandlerChain referencing
handler configuration file to the Web Service references for clients running in JavaEE Container.
Explanation: