InvocationManager invManager = wscImpl.getInvocationManager();
inv = WebComponentInvocation.class.cast(invManager.getCurrentInvocation());
com.sun.xml.rpc.spi.runtime.Tie tie =
(com.sun.xml.rpc.spi.runtime.Tie) inv.getWebServiceTie();
if (tie == null) {
Implementor implementor = (Implementor)
context.getProperty(MessageContextProperties.IMPLEMENTOR);
tie = implementor.getTie();
inv.setWebServiceTie(tie);
}
inv.setWebServiceMethod(wsUtil.getInvMethod(tie, context));
} catch(Exception e) {