// TODO: should we know it is MethodIntf.SERVICE_ENDPOINT?
final Class<?> invokedBusinessInterface = null;
final Method implMethod = ejbContainer.getComponentMethod(seiMethod);
final Object[] args = wsInvocation.getArgs();
// invoke method
final Object retObj = ejbContainer.invoke(sessionId, contextData, invokedBusinessInterface, implMethod, args);
wsInvocation.setReturnValue(retObj);
}
catch (Throwable t) {
this.log.error("Method invocation failed with exception: " + t.getMessage(), t);
this.handleInvocationException(t);