You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by sa...@apache.org on 2012/03/02 12:50:37 UTC

svn commit: r1296159 - /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/util/Utils.java

Author: sagara
Date: Fri Mar  2 11:50:37 2012
New Revision: 1296159

URL: http://svn.apache.org/viewvc?rev=1296159&view=rev
Log:
Fixed AXIS2-5215.

Modified:
    axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/util/Utils.java

Modified: axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/util/Utils.java
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/util/Utils.java?rev=1296159&r1=1296158&r2=1296159&view=diff
==============================================================================
--- axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/util/Utils.java (original)
+++ axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/util/Utils.java Fri Mar  2 11:50:37 2012
@@ -511,7 +511,7 @@ public class Utils {
         if ("void".equals(method.getReturnType().getName())) {
             if (method.getExceptionTypes().length > 0) {
                 operation = AxisOperationFactory
-                        .getAxisOperation(WSDLConstants.MEP_CONSTANT_ROBUST_IN_ONLY);
+                        .getAxisOperation(WSDLConstants.MEP_CONSTANT_IN_OUT);
             } else {
                 operation = AxisOperationFactory
                         .getAxisOperation(WSDLConstants.MEP_CONSTANT_IN_ONLY);