* Gets the right handlers for the port/service/bindings and
* performs injection.
*/
protected void configureHandlers() throws Exception {
HandlerChainsType handlerChains = this.portInfo.getHandlers(HandlerChainsType.class);
CXFHandlerResolver handlerResolver =
new CXFHandlerResolver(this.implementor.getClass().getClassLoader(),
this.implementor.getClass(),
handlerChains,
this.annotationProcessor);
PortInfoImpl portInfo = new PortInfoImpl(implInfo.getBindingType(),
serviceFactory.getEndpointName(),
service.getName());
List<Handler> chain = handlerResolver.getHandlerChain(portInfo);
getBinding().setHandlerChain(chain);
}