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 ve...@apache.org on 2012/10/06 17:20:50 UTC

svn commit: r1395095 - /axis/axis1/java/trunk/interop/src/test/java/test/wsdl/soap12/additional/WhiteMesaSoap12AddTestSvcTestCase.java

Author: veithen
Date: Sat Oct  6 15:20:50 2012
New Revision: 1395095

URL: http://svn.apache.org/viewvc?rev=1395095&view=rev
Log:
Use the expected parameter name for the echoString operation.

Modified:
    axis/axis1/java/trunk/interop/src/test/java/test/wsdl/soap12/additional/WhiteMesaSoap12AddTestSvcTestCase.java

Modified: axis/axis1/java/trunk/interop/src/test/java/test/wsdl/soap12/additional/WhiteMesaSoap12AddTestSvcTestCase.java
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/interop/src/test/java/test/wsdl/soap12/additional/WhiteMesaSoap12AddTestSvcTestCase.java?rev=1395095&r1=1395094&r2=1395095&view=diff
==============================================================================
--- axis/axis1/java/trunk/interop/src/test/java/test/wsdl/soap12/additional/WhiteMesaSoap12AddTestSvcTestCase.java (original)
+++ axis/axis1/java/trunk/interop/src/test/java/test/wsdl/soap12/additional/WhiteMesaSoap12AddTestSvcTestCase.java Sat Oct  6 15:20:50 2012
@@ -580,6 +580,8 @@ public class WhiteMesaSoap12AddTestSvcTe
         header.setObjectValue(HEADER_VAL);
         call.addHeader(header);
         
+        call.addParameter(new QName("", "inputString"),
+                Constants.XSD_STRING, ParameterMode.IN);
         try {
             call.invoke(ECHO_STRING_QNAME, new Object [] { "body string" });
         } catch (AxisFault fault) {