dblevins 2005/04/15 21:12:43
Modified: modules/core/src/java/org/openejb/server/axis
EJBContainerProvider.java
Log:
No longer want the SOAPService processing JAXRPC handlers
Revision Changes Path
1.3 +3 -2
openejb/modules/core/src/java/org/openejb/server/axis/EJBContainerProvider.java
Index: EJBContainerProvider.java
===================================================================
RCS file:
/scm/openejb/openejb/modules/core/src/java/org/openejb/server/axis/EJBContainerProvider.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- EJBContainerProvider.java 16 Mar 2005 02:24:14 -0000 1.2
+++ EJBContainerProvider.java 16 Apr 2005 01:12:43 -0000 1.3
@@ -35,8 +35,9 @@
protected Object invokeMethod(MessageContext msgContext, Method method,
Object obj, Object[] params) throws Exception {
int index = ejbContainer.getMethodIndex(method);
EJBInvocation invocation = new
EJBInvocationImpl(EJBInterfaceType.WEB_SERVICE, null, index, params);
- javax.xml.rpc.handler.MessageContext messageContext = new
SimpleMessageContext(new HashMap());
- invocation.put(MessageContextInvocationKey.INSTANCE, messageContext);
+// javax.xml.rpc.handler.MessageContext messageContext = new
SimpleMessageContext(new HashMap());
+ invocation.put(MessageContextInvocationKey.INSTANCE, msgContext);
+
try {
InvocationResult invocationResult =
ejbContainer.invoke(invocation);
if (invocationResult.isException()) {