for (OutboundInvocationChain chain : outboundWire.getInvocationChains().values()) {
//FIXME should use target method, not outboundInvocationConfig.getMethod()
Method[] methods = outboundWire.getServiceContract().getInterfaceClass().getMethods();
Method m = JavaIDLUtils.findMethod(chain.getOperation(), methods);
TargetInvoker invoker = new JavaTargetInvoker(m, targetContext);
invoker.setCacheable(cacheable);
chain.setTargetInvoker(invoker);
}
}
}