289290291292293294295296297298299
} if (source instanceof RuntimeEndpointReference) { RuntimeEndpointReference epr = (RuntimeEndpointReference)source; if (epr.isOutOfDate()) { epr.rebuild(); chains.clear(); } } // end if InvocationChain chain = getInvocationChain(method, source);
9293949596979899100101102
} if (source instanceof RuntimeEndpointReference) { RuntimeEndpointReference epr = (RuntimeEndpointReference)source; if (epr.isOutOfDate()) { epr.rebuild(); chains.clear(); } } InvocationChain chain = getInvocationChain(method, source);
148149150151152153154155156157158
if (!epr.isAsyncInvocation()){ throw new ServiceRuntimeException("Calling invokeAsync on a non-async endpoint reference - " + epr); } if (epr.isOutOfDate()) { epr.rebuild(); } msg.setFrom(epr); msg.setTo(epr.getTargetEndpoint()); }
96979899100101102103104105106