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 di...@apache.org on 2005/11/30 19:55:59 UTC

svn commit: r350012 - /webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ElementFormDefaultTestClient.cpp

Author: dicka
Date: Wed Nov 30 10:55:56 2005
New Revision: 350012

URL: http://svn.apache.org/viewcvs?rev=350012&view=rev
Log:
Update ElementFormDefaultTestClient.cpp to reflect recent fixes for output parameters.

Modified:
    webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ElementFormDefaultTestClient.cpp

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ElementFormDefaultTestClient.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ElementFormDefaultTestClient.cpp?rev=350012&r1=350011&r2=350012&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ElementFormDefaultTestClient.cpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ElementFormDefaultTestClient.cpp Wed Nov 30 10:55:56 2005
@@ -98,16 +98,16 @@
 					complexType,
 					arrayOfComplexType,
 					&outStringElement,
-					outIntegerElement,
-					outIntegerArrayElement, 
-					outOptionalIntegerElement, 
-					outNillableIntegerElement, 
+					&outIntegerElement,
+					&outIntegerArrayElement, 
+					&outOptionalIntegerElement, 
+					&outNillableIntegerElement, 
 					&outComplexType, 
-					outArrayOfComplexType);
+					&outArrayOfComplexType);
 
 				// Print output values
 				cout << "String element = " << outStringElement << endl;
-				cout << "Integer element = " << outIntegerElement << endl;
+				cout << "Integer element = " << *outIntegerElement << endl;
 				cout << "Array of integer elements" << endl;
 				outputSize = 0;
 				const xsd__integer** outArrayOfIntegers = outIntegerArrayElement->get(outputSize);
@@ -203,16 +203,16 @@
 					complexType,
 					arrayOfComplexType,
 					&outStringElement,
-					outIntegerElement,
-					outIntegerArrayElement, 
-					outOptionalIntegerElement, 
-					outNillableIntegerElement, 
+					&outIntegerElement,
+					&outIntegerArrayElement, 
+					&outOptionalIntegerElement, 
+					&outNillableIntegerElement, 
 					&outComplexType, 
-					outArrayOfComplexType);
+					&outArrayOfComplexType);
 
 				// Print output values
 				cout << "String element = " << outStringElement << endl;
-				cout << "Integer element = " << outIntegerElement << endl;
+				cout << "Integer element = " << *outIntegerElement << endl;
 				cout << "Array of integer elements" << endl;
 				outputSize = 0;
 				const xsd__integer** outArrayOfIntegers = outIntegerArrayElement->get(outputSize);