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 du...@apache.org on 2005/12/08 06:50:43 UTC

svn commit: r355000 - /webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/InteropTestPortType.cpp

Author: dushshantha
Date: Wed Dec  7 21:50:33 2005
New Revision: 355000

URL: http://svn.apache.org/viewcvs?rev=355000&view=rev
Log:
Changed the service implementation.

Modified:
    webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/InteropTestPortType.cpp

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/InteropTestPortType.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/InteropTestPortType.cpp?rev=355000&r1=354999&r2=355000&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/InteropTestPortType.cpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/InteropTestPortType.cpp Wed Dec  7 21:50:33 2005
@@ -38,25 +38,25 @@
 xsd__string InteropTestPortType::echoString(xsd__string Value0)  
 {	return Value0;
 }
-xsd__string_Array InteropTestPortType::echoStringArray(xsd__string_Array Value0)  
+xsd__string_Array * InteropTestPortType::echoStringArray(xsd__string_Array * Value0)  
 {	return Value0;
 }
 int InteropTestPortType::echoInteger(int Value0)  
 {	return Value0;
 }
-xsd__int_Array InteropTestPortType::echoIntegerArray(xsd__int_Array Value0)  
+xsd__int_Array * InteropTestPortType::echoIntegerArray(xsd__int_Array * Value0)  
 {	return Value0;
 }
 float InteropTestPortType::echoFloat(float Value0)  
 {	return Value0;
 }
-xsd__float_Array InteropTestPortType::echoFloatArray(xsd__float_Array Value0)  
+xsd__float_Array * InteropTestPortType::echoFloatArray(xsd__float_Array * Value0)  
 {	return Value0;
 }
 SOAPStruct* InteropTestPortType::echoStruct(SOAPStruct* Value0)  
 {	return Value0;
 }
-SOAPStruct_Array InteropTestPortType::echoStructArray(SOAPStruct_Array Value0)  
+SOAPStruct_Array * InteropTestPortType::echoStructArray(SOAPStruct_Array * Value0)  
 {	return Value0;
 }
 void InteropTestPortType::echoVoid()