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 ja...@apache.org on 2005/11/09 08:26:10 UTC

svn commit: r331973 - /webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/XSD_booleanClient.cpp

Author: jamejose
Date: Tue Nov  8 23:25:55 2005
New Revision: 331973

URL: http://svn.apache.org/viewcvs?rev=331973&view=rev
Log: (empty)

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

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/XSD_booleanClient.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/XSD_booleanClient.cpp?rev=331973&r1=331972&r2=331973&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/XSD_booleanClient.cpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/XSD_booleanClient.cpp Tue Nov  8 23:25:55 2005
@@ -119,15 +119,15 @@
 
         xsd__boolean_Array arrayInput;
 		int arraySize=2;
-		xsd__boolean ** array = new xsd__boolean*[arraySize]();        
+		xsd__boolean ** array = new xsd__boolean*[arraySize];        
         for (int inputIndex=0 ; inputIndex < arraySize ; inputIndex++)
         {
             array[inputIndex] = new xsd__boolean(true_);            
         }
 		arrayInput.set(array,arraySize);
-		xsd__boolean_Array arrayResult = ws->asArray(arrayInput);
+		xsd__boolean_Array* arrayResult = ws->asArray(&arrayInput);
 		int outputSize=2;
-		const xsd__boolean **output = arrayResult.get(outputSize);
+		const xsd__boolean **output = arrayResult->get(outputSize);
         cout << "array of " << outputSize << " elements" << endl;
 		for (int index = 0; index < outputSize; index++)
 		{