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/12/06 11:44:28 UTC

svn commit: r354397 - /webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/SameComplexTypeAndElementNameClient.cpp

Author: dicka
Date: Tue Dec  6 02:44:23 2005
New Revision: 354397

URL: http://svn.apache.org/viewcvs?rev=354397&view=rev
Log:
Ensure all objects to be serialized are correctly initialized, as different platforms/compilres provide different default initialization.

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

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/SameComplexTypeAndElementNameClient.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/SameComplexTypeAndElementNameClient.cpp?rev=354397&r1=354396&r2=354397&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/SameComplexTypeAndElementNameClient.cpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/SameComplexTypeAndElementNameClient.cpp Tue Dec  6 02:44:23 2005
@@ -37,6 +37,7 @@
 			SampleBeanComplex ** BBArray = NULL;			
 			BBArrayIn.set(BBArray,0);
 			pSBB->setSampleBean(&BBArrayIn);
+			pSBB->setSampleBeanBoolean(false_);
 	
 			pWS->aBeanPortTypeBase( pSBB);	
 			cout << "Called aBeanPortTypeBase()" << endl;
@@ -46,6 +47,7 @@
 			BCArrayIn.set(BCArray,0);
 			
 			pSBC->setSampleBeanComplex_Ref(&BCArrayIn);
+			pSBC->setBoolean(false_);
 			pWS->aBeanPortTypeComplex( pSBC);
 
 			cout << "Called aBeanPortTypeComplex()" << endl;