* performs injection.
*/
protected void configureHandlers() throws Exception {
String xml = this.portInfo.getHandlersAsXML();
HandlerChainsType handlerChains = xml == null ? null : HandlerChainsDocument.Factory.parse(xml).getHandlerChains();
Axis2HandlerResolver handlerResolver =
new Axis2HandlerResolver(endpointInstance.getClass().getClassLoader(),
endpointInstance.getClass(),
handlerChains,
this.annotationProcessor);
// TODO: pass non-null PortInfo to get the right handlers
chain = handlerResolver.getHandlerChain(null);
}