You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ga...@apache.org on 2007/05/09 02:17:01 UTC

svn commit: r536385 - /geronimo/server/trunk/modules/geronimo-cxf/src/main/java/org/apache/geronimo/cxf/ejb/EJBMethodInvoker.java

Author: gawor
Date: Tue May  8 17:17:00 2007
New Revision: 536385

URL: http://svn.apache.org/viewvc?view=rev&rev=536385
Log:
use new invocation style (passing the call interface)

Modified:
    geronimo/server/trunk/modules/geronimo-cxf/src/main/java/org/apache/geronimo/cxf/ejb/EJBMethodInvoker.java

Modified: geronimo/server/trunk/modules/geronimo-cxf/src/main/java/org/apache/geronimo/cxf/ejb/EJBMethodInvoker.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-cxf/src/main/java/org/apache/geronimo/cxf/ejb/EJBMethodInvoker.java?view=diff&rev=536385&r1=536384&r2=536385
==============================================================================
--- geronimo/server/trunk/modules/geronimo-cxf/src/main/java/org/apache/geronimo/cxf/ejb/EJBMethodInvoker.java (original)
+++ geronimo/server/trunk/modules/geronimo-cxf/src/main/java/org/apache/geronimo/cxf/ejb/EJBMethodInvoker.java Tue May  8 17:17:00 2007
@@ -91,7 +91,7 @@
 
             Class callInterface = this.deploymentInfo.getServiceEndpointInterface();
             method = getMostSpecificMethod(method, callInterface);
-            Object res = container.invoke(this.deploymentInfo.getDeploymentID(), method, arguments, null, null);
+            Object res = container.invoke(this.deploymentInfo.getDeploymentID(), callInterface, method, arguments, null);
 
             if (exchange.isOneWay()) {
                 return null;