Author: veithen
Date: Sat Oct  6 09:34:02 2012
New Revision: 1394976

URL: http://svn.apache.org/viewvc?rev=1394976&view=rev
Log:
Ensure that the XMLP-16 test uses the correct parameter name.

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=1394976&r1=1394975&r2=1394976&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 09:34:02 2012
@@ -491,6 +491,8 @@ public class WhiteMesaSoap12AddTestSvcTe
         header.setObjectValue(HEADER_VAL);
         call.addHeader(header);
         
+        call.addParameter(new QName("", "inputString"),
+                Constants.XSD_STRING, ParameterMode.IN);
         call.invoke(ECHO_STRING_QNAME, new Object [] { "body string" });
         
         SOAPEnvelope respEnv = 
call.getMessageContext().getResponseMessage().getSOAPEnvelope();


Reply via email to