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/10 11:21:22 UTC

svn commit: r332266 - /webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/XSD_gYearMonthClient.cpp

Author: jamejose
Date: Thu Nov 10 02:21:08 2005
New Revision: 332266

URL: http://svn.apache.org/viewcvs?rev=332266&view=rev
Log:
Updated the testcase with new Array APIs

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

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/XSD_gYearMonthClient.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/XSD_gYearMonthClient.cpp?rev=332266&r1=332265&r2=332266&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/XSD_gYearMonthClient.cpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/XSD_gYearMonthClient.cpp Thu Nov 10 02:21:08 2005
@@ -116,25 +116,32 @@
 */
         // Test array
         xsd__gYearMonth_Array arrayInput;
-        arrayInput.m_Array = new xsd__gYearMonth*[2];
-        xsd__gYearMonth * array = new xsd__gYearMonth[2];
-        arrayInput.m_Size = 2;
-        for (int inputIndex=0 ; inputIndex < 2 ; inputIndex++)
+		int arraySize =2;
+		xsd__gYearMonth ** array = new xsd__gYearMonth*[arraySize];
+        
+        for (int inputIndex=0 ; inputIndex < arraySize ; inputIndex++)
         {
-            array[inputIndex] = time;
-            arrayInput.m_Array[inputIndex] = &array[inputIndex];
+            array[inputIndex] =new xsd__gYearMonth(time);
+            
         }
-        xsd__gYearMonth_Array arrayResult = ws->asArray(arrayInput);
-        cout << "array of " << arrayResult.m_Size << " elements" << endl;
-        for (int index = 0; index < arrayResult.m_Size ; index++)
+		arrayInput.set(array,arraySize);
+        xsd__gYearMonth_Array* arrayResult = ws->asArray(&arrayInput);
+		int outputSize = 0;
+		const xsd__gYearMonth **output = arrayResult->get(outputSize);
+        cout << "array of " << outputSize << " elements" << endl;
+        for (int index = 0; index < outputSize ; index++)
         {
-            strftime(returnString, 50, "%b %Y", arrayResult.m_Array[index]);
+            strftime(returnString, 50, "%b %Y", output[index]);
             cout << "  element[" << index << "]=" << returnString << endl;
-            delete arrayResult.m_Array[index];
+           
+        }
+       // Clear up input array        
+        for (int deleteIndex = 0 ; deleteIndex < arraySize ; deleteIndex++ )
+        {
+            delete array[deleteIndex];
         }
         delete [] array;
-        delete [] arrayInput.m_Array;
-        delete [] arrayResult.m_Array;
+
 
         // Test complex type
         SimpleComplexType complexTypeInput;