You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ke...@apache.org on 2007/12/04 12:06:26 UTC

svn commit: r600878 - in /webservices/axis2/branches/java/1_3_post_mods/modules/kernel/src/org/apache/axis2/description: AxisService2WSDL20.java WSDL2Constants.java

Author: keithc
Date: Tue Dec  4 03:06:24 2007
New Revision: 600878

URL: http://svn.apache.org/viewvc?rev=600878&view=rev
Log:
Fixing wrpc:signature


Modified:
    webservices/axis2/branches/java/1_3_post_mods/modules/kernel/src/org/apache/axis2/description/AxisService2WSDL20.java
    webservices/axis2/branches/java/1_3_post_mods/modules/kernel/src/org/apache/axis2/description/WSDL2Constants.java

Modified: webservices/axis2/branches/java/1_3_post_mods/modules/kernel/src/org/apache/axis2/description/AxisService2WSDL20.java
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_3_post_mods/modules/kernel/src/org/apache/axis2/description/AxisService2WSDL20.java?rev=600878&r1=600877&r2=600878&view=diff
==============================================================================
--- webservices/axis2/branches/java/1_3_post_mods/modules/kernel/src/org/apache/axis2/description/AxisService2WSDL20.java (original)
+++ webservices/axis2/branches/java/1_3_post_mods/modules/kernel/src/org/apache/axis2/description/AxisService2WSDL20.java Tue Dec  4 03:06:24 2007
@@ -647,7 +647,7 @@
         Iterator outElementIterator = outElementSet.iterator();
         while (outElementIterator.hasNext()) {
             String outElementName = (String) outElementIterator.next();
-            out = out + outElementName + " " + WSDL2Constants.RPC_OUT + " ";
+            out = out + outElementName + " " + WSDL2Constants.RPC_RETURN + " ";
         }
         return in + out + inOut;
     }

Modified: webservices/axis2/branches/java/1_3_post_mods/modules/kernel/src/org/apache/axis2/description/WSDL2Constants.java
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_3_post_mods/modules/kernel/src/org/apache/axis2/description/WSDL2Constants.java?rev=600878&r1=600877&r2=600878&view=diff
==============================================================================
--- webservices/axis2/branches/java/1_3_post_mods/modules/kernel/src/org/apache/axis2/description/WSDL2Constants.java (original)
+++ webservices/axis2/branches/java/1_3_post_mods/modules/kernel/src/org/apache/axis2/description/WSDL2Constants.java Tue Dec  4 03:06:24 2007
@@ -128,7 +128,7 @@
     String MESSAGE_LABEL_OUT = "Out";
 
     String RPC_IN = "#in";
-    String RPC_OUT = "#out";
+    String RPC_RETURN = "#return";
     String RPC_INOUT = "#inout";
 
     String HTTP_LOCATION_TABLE = "HTTPLocationTable";



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org