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 07:09:42 UTC

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

sanjaya     2004/08/04 22:09:42

  Modified:    c/samples/client/interoptests/cgroupB Tag:
                        NamespaceTesting_branch InteropTestPortTypeB.c
  Log:
  Changed parameter order of the handwritten sample cgroupb to conform with
  the WSDL2Ws tool changes
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.7.10.2  +2 -2      ws-axis/c/samples/client/interoptests/cgroupB/InteropTestPortTypeB.c
  
  Index: InteropTestPortTypeB.c
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/samples/client/interoptests/cgroupB/InteropTestPortTypeB.c,v
  retrieving revision 1.7.10.1
  retrieving revision 1.7.10.2
  diff -u -r1.7.10.1 -r1.7.10.2
  --- InteropTestPortTypeB.c	4 Aug 2004 13:45:00 -0000	1.7.10.1
  +++ InteropTestPortTypeB.c	5 Aug 2004 05:09:42 -0000	1.7.10.2
  @@ -70,9 +70,9 @@
   	pCall->_functions->setTransportProperty(pCall->_object,SOAPACTION_HEADER , "cgroupB#echoSimpleTypesAsStruct");
   	pCall->_functions->setSOAPVersion(pCall->_object, SOAP_VER_1_1);
   	pCall->_functions->setOperation(pCall->_object, "echoSimpleTypesAsStruct", "http://soapinterop.org/");
  -	pCall->_functions->addParameter(pCall->_object, (void*)&Value0, "inputFloat", XSD_FLOAT);
  +	pCall->_functions->addParameter(pCall->_object, (void*)&Value0, "inputString", XSD_STRING);
   	pCall->_functions->addParameter(pCall->_object, (void*)&Value1, "inputInteger", XSD_INT);
  -	pCall->_functions->addParameter(pCall->_object, (void*)&Value2, "inputString", XSD_STRING);
  +    pCall->_functions->addParameter(pCall->_object, (void*)&Value2, "inputFloat", XSD_FLOAT);
   	if (AXIS_SUCCESS == pCall->_functions->invoke(pCall->_object))
   	{
   		if(AXIS_SUCCESS == pCall->_functions->checkMessage(pCall->_object, "echoSimpleTypesAsStructResponse", "http://soapinterop.org/"))