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 da...@apache.org on 2004/08/17 08:23:24 UTC

cvs commit: ws-axis/c/tests/auto_build/linux/testcases/client/cpp InteropTestRound1Client.cpp

damitha     2004/08/16 23:23:24

  Modified:    c/tests/auto_build/linux/testcases/client/cpp
                        InteropTestRound1Client.cpp
  Log:
  
  
  Revision  Changes    Path
  1.3       +6 -6      ws-axis/c/tests/auto_build/linux/testcases/client/cpp/InteropTestRound1Client.cpp
  
  Index: InteropTestRound1Client.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/linux/testcases/client/cpp/InteropTestRound1Client.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- InteropTestRound1Client.cpp	13 Aug 2004 08:41:11 -0000	1.2
  +++ InteropTestRound1Client.cpp	17 Aug 2004 06:23:24 -0000	1.3
  @@ -92,9 +92,9 @@
   		printf("failed\n");
   	// testing echo Struct
   	SOAPStruct stct;
  -	stct.SOAPStruct_varFloat = 12345.7346345;
  -	stct.SOAPStruct_varInt = 5000;
  -	stct.SOAPStruct_varString = strdup("This is string in SOAPStruct");
  +	stct.varFloat = 12345.7346345;
  +	stct.varInt = 5000;
  +	stct.varString = strdup("This is string in SOAPStruct");
   	printf("invoking echoStruct...\n");
   	if (ws.echoStruct(&stct) != NULL)
   		printf("successful\n");
  @@ -106,10 +106,10 @@
   	arrstct.m_Size = ARRAYSIZE;
   	for (x=0;x<ARRAYSIZE;x++)
   	{
  -		arrstct.m_Array[x].SOAPStruct_varFloat = 1.1111*x;
  -		arrstct.m_Array[x].SOAPStruct_varInt = x;
  +		arrstct.m_Array[x].varFloat = 1.1111*x;
  +		arrstct.m_Array[x].varInt = x;
   		sprintf(buffer1, "varString of %dth element of SOAPStruct array", x);
  -		arrstct.m_Array[x].SOAPStruct_varString = buffer1;
  +		arrstct.m_Array[x].varString = buffer1;
   	}
   	//testing echo Struct Array
   	printf("invoking echoStructArray...\n");