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

svn commit: r331983 - /webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/XSD_hexBinaryClient.cpp

Author: jamejose
Date: Tue Nov  8 23:37:12 2005
New Revision: 331983

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

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

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/XSD_hexBinaryClient.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/XSD_hexBinaryClient.cpp?rev=331983&r1=331982&r2=331983&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/XSD_hexBinaryClient.cpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/XSD_hexBinaryClient.cpp Tue Nov  8 23:37:12 2005
@@ -124,15 +124,15 @@
         // Test array
         xsd__hexBinary_Array arrayInput;
 		int arraySize = 2;
-        xsd__hexBinary ** array = new xsd__hexBinary*[arraySize]();
+        xsd__hexBinary ** array = new xsd__hexBinary*[arraySize];
         for (int inputIndex=0 ; inputIndex < arraySize ; inputIndex++)
         {
             array[inputIndex] = new xsd__hexBinary(input);            
         }
 		arrayInput.set(array,arraySize);
-        xsd__hexBinary_Array arrayResult = ws->asArray(arrayInput);
+        xsd__hexBinary_Array* arrayResult = ws->asArray(&arrayInput);
 		int outputSize=0;
-		const xsd__hexBinary ** output =arrayResult.get(outputSize);
+		const xsd__hexBinary ** output =arrayResult->get(outputSize);
         cout << "array of " << outputSize << " elements" << endl;
         for (int index = 0; index < outputSize; index++)
         {