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/08 09:23:16 UTC

svn commit: r331731 - /webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/XSD_NCNameClient.cpp

Author: jamejose
Date: Tue Nov  8 00:23:01 2005
New Revision: 331731

URL: http://svn.apache.org/viewcvs?rev=331731&view=rev
Log:
Updated testcase with new Memory model for Arrays

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

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/XSD_NCNameClient.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/XSD_NCNameClient.cpp?rev=331731&r1=331730&r2=331731&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/XSD_NCNameClient.cpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/XSD_NCNameClient.cpp Tue Nov  8 00:23:01 2005
@@ -259,38 +259,44 @@
 */
 
         // Test array
+        	int arraySize=2;
         xsd__NCName_Array arrayInput;
-        arrayInput.m_Array = new xsd__NCName[2];
-        arrayInput.m_Size = 2;
+		xsd__NCName * array=new xsd__NCName[arraySize]();        
         for (int inputIndex=0 ; inputIndex < 2 ; inputIndex++)
         {
             input = new char[25];
             strcpy (input, simpleNCName);
-            arrayInput.m_Array[inputIndex] = input;
+            array[inputIndex] = input;
         }
+		arrayInput.set(array,arraySize);
         xsd__NCName_Array arrayResult = ws->asArray(arrayInput);
-        cout << "array of " << arrayResult.m_Size << " elements" << endl;
-        for (int index = 0; index < arrayResult.m_Size ; index++)
+		int outputSize = 0;
+        const xsd__NCName* output = arrayResult.get(outputSize);
+        cout << "array of " << outputSize << " elements" << endl;
+        for (int index = 0; index < outputSize ; index++)
         {
-            if (arrayResult.m_Array[index])
+            if (output !=NULL)
             {
-                if (*(arrayResult.m_Array[index]))
+                if (output[index]!=NULL)
                 {
-                    cout << "  element[" << index << "]=" << arrayResult.m_Array[index] << endl;
+                    cout << "  element[" << index << "]=" << output[index] << endl;
                 }
                 else
                 {
                     cout << "  element[" << index << "]=<empty>" << endl;
                 }
-                delete arrayResult.m_Array[index];
-            }
+                            }
             else
             {
                 cout << "  element[" << index << "]=<nil>" << endl;
             }
         }
-        delete [] arrayInput.m_Array;
-        delete [] arrayResult.m_Array;
+        // Clear up input array        
+        for (int deleteIndex = 0 ; deleteIndex < arraySize ; deleteIndex++ )
+        {
+            delete array[deleteIndex];
+        }
+        delete [] array;
 
         // Test complex type
         input = new char[25];