You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by sa...@apache.org on 2004/08/05 06:15:13 UTC

cvs commit: ws-axis/c/samples/client/interoptests/groupB InteropTestPortTypeB.cpp

sanjaya     2004/08/04 21:15:13

  Modified:    c/samples/client/interoptests/groupB Tag:
                        NamespaceTesting_branch InteropTestPortTypeB.cpp
  Log:
  Changed parameter order of the handwritten sample groupb to conform with
  the WSDL2Ws tool changes
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.13.10.2 +4 -2      ws-axis/c/samples/client/interoptests/groupB/InteropTestPortTypeB.cpp
  
  Index: InteropTestPortTypeB.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/samples/client/interoptests/groupB/InteropTestPortTypeB.cpp,v
  retrieving revision 1.13.10.1
  retrieving revision 1.13.10.2
  diff -u -r1.13.10.1 -r1.13.10.2
  --- InteropTestPortTypeB.cpp	4 Aug 2004 11:22:42 -0000	1.13.10.1
  +++ InteropTestPortTypeB.cpp	5 Aug 2004 04:15:12 -0000	1.13.10.2
  @@ -74,9 +74,11 @@
   	m_pCall->setTransportProperty(SOAPACTION_HEADER , "groupB#echoSimpleTypesAsStruct");
   	m_pCall->setSOAPVersion(SOAP_VER_1_1);
   	m_pCall->setOperation("echoSimpleTypesAsStruct", "http://soapinterop.org/");
  -	m_pCall->addParameter((void*)&Value0, "inputFloat", XSD_FLOAT);
  +	m_pCall->addParameter((void*)&Value0, "inputString", XSD_STRING);
   	m_pCall->addParameter((void*)&Value1, "inputInteger", XSD_INT);
  -	m_pCall->addParameter((void*)&Value2, "inputString", XSD_STRING);
  +	m_pCall->addParameter((void*)&Value2, "inputFloat", XSD_FLOAT);
  +
  +
   	if (AXIS_SUCCESS == m_pCall->invoke())
   	{
   		if(AXIS_SUCCESS == m_pCall->checkMessage("echoSimpleTypesAsStructResponse", ""))