Author: veithen
Date: Sat Oct 6 14:53:41 2012
New Revision: 1395077
URL: http://svn.apache.org/viewvc?rev=1395077&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=1395077&r1=1395076&r2=1395077&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 14:53:41 2012
@@ -520,6 +520,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();
@@ -549,6 +551,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();