You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by su...@apache.org on 2003/07/16 16:28:40 UTC

cvs commit: xml-axis/c/src/server/samples/libinteropbase BaseTests.h BaseTests.cpp

susantha    2003/07/16 07:28:40

  Modified:    c/src/server/samples/libinteropbase BaseTests.h
                        BaseTests.cpp
  Log:
  sample webservices for interop base and group B tests
  
  Revision  Changes    Path
  1.3       +1 -1      xml-axis/c/src/server/samples/libinteropbase/BaseTests.h
  
  Index: BaseTests.h
  ===================================================================
  RCS file: /home/cvs/xml-axis/c/src/server/samples/libinteropbase/BaseTests.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- BaseTests.h	30 Jun 2003 04:08:53 -0000	1.2
  +++ BaseTests.h	16 Jul 2003 14:28:40 -0000	1.3
  @@ -31,7 +31,7 @@
   	void echoVoid();
   	SOAPStruct* echoStructArray(int inSize, SOAPStruct array[], int *outSize);
   	SOAPStruct* echoStruct(SOAPStruct* strct);
  -	float* echoFloatArray(int inSize, float array[], int outSize);
  +	float* echoFloatArray(int inSize, float array[], /* @@@ RETURNSIZE */ int* outSize);
   	float echoFloat(float f);
   	int* echoIntegerArray(int inSize, int array[], int* outSize);
   	int echoInteger(int i);
  
  
  
  1.3       +3 -3      xml-axis/c/src/server/samples/libinteropbase/BaseTests.cpp
  
  Index: BaseTests.cpp
  ===================================================================
  RCS file: /home/cvs/xml-axis/c/src/server/samples/libinteropbase/BaseTests.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- BaseTests.cpp	30 Jun 2003 04:08:53 -0000	1.2
  +++ BaseTests.cpp	16 Jul 2003 14:28:40 -0000	1.3
  @@ -45,7 +45,7 @@
   	return f;
   }
   
  -float* BaseTests::echoFloatArray(int inSize, float array[], int outSize)
  +float* BaseTests::echoFloatArray(int inSize, float array[], int *outSize)
   {
   	*outSize = inSize;
   	return array;
  @@ -69,10 +69,10 @@
   
   string& BaseTests::echoBase64(string &str)
   {
  -
  +	return str;
   }
   
   string& BaseTests::echoHexBinary(string &str)
   {
  -
  +	return str;
   }