User: jung
Date: 01/03/13 23:35:54
Modified: src/org/jboss/ejb/plugins/zoap SoapContainerInvoker.java
Log:
there was an ambiguity in the MethodInvocation constructor in the jboss2.1
release.
Revision Changes Path
1.4 +8 -3 zoap/src/org/jboss/ejb/plugins/zoap/SoapContainerInvoker.java
Index: SoapContainerInvoker.java
===================================================================
RCS file:
/products/cvs/ejboss/zoap/src/org/jboss/ejb/plugins/zoap/SoapContainerInvoker.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- SoapContainerInvoker.java 2001/01/04 14:45:05 1.3
+++ SoapContainerInvoker.java 2001/03/14 07:35:54 1.4
@@ -51,10 +51,15 @@
import de.infor.ce.util.Component;
+import javax.transaction.Transaction;
+
+
import javax.ejb.EJBObject;
import javax.ejb.EJBMetaData;
import javax.ejb.EJBHome;
+import java.security.Principal;
+
import java.util.Collection;
import java.util.ArrayList;
import java.util.Properties;
@@ -74,7 +79,7 @@
* resolved sufficiently. For example the creation of invocation handlers
* to the home and to the bean is yet implemented only prototypically.
* @author $Author: jung $
- * @version $Revision: 1.3 $
+ * @version $Revision: 1.4 $
*/
public class SoapContainerInvoker implements ContainerInvoker, SoapRouter,
XmlLoadable {
@@ -246,7 +251,7 @@
methodResponse.setValue(con.invoke(
new MethodInvocation(handle,
- methodRequest.getMethod(), methodRequest.getArguments(),
null, null, null)));
+ methodRequest.getMethod(), methodRequest.getArguments(),
(Transaction) null, (Principal) null, null)));
returnValue = new Envelope(null, methodResponse);