return value;
}
public Object invoke(javax.xml.ws.handler.MessageContext messageContext, Object... parameters) throws Exception {
InvocationContext invocationContext = new JaxWsInvocationContext(operation, interceptors, beanInstance, targetMethod, messageContext, parameters);
Object value = invocationContext.proceed();
return value;
}
public Object invoke(javax.xml.rpc.handler.MessageContext messageContext, Object... parameters) throws Exception {
InvocationContext invocationContext = new JaxRpcInvocationContext(operation, interceptors, beanInstance, targetMethod, messageContext, parameters);