147148149150151152153154155156157
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
} if (source instanceof RuntimeEndpointReference) { RuntimeEndpointReference epr = (RuntimeEndpointReference)source; if (epr.isOutOfDate()) { epr.rebuild(); chains.clear(); } } InvocationChain chain = getInvocationChain(method, source);
291292293294295296297298299300301
} if (source instanceof RuntimeEndpointReference) { RuntimeEndpointReference epr = (RuntimeEndpointReference)source; if (epr.isOutOfDate()) { epr.rebuild(); chains.clear(); } } // end if InvocationChain chain = getInvocationChain(method, source);
949596979899100101102103104
288289290291292293294295296297298
278279280281282283284285286287288
148149150151152153154155156157158