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 di...@apache.org on 2006/02/23 16:08:23 UTC

svn commit: r380139 - /webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/MinOccursIsZero.cpp

Author: dicka
Date: Thu Feb 23 07:08:23 2006
New Revision: 380139

URL: http://svn.apache.org/viewcvs?rev=380139&view=rev
Log:
Correct MinOccursIsZero service to correctly echo the request message parts.

Modified:
    webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/MinOccursIsZero.cpp

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/MinOccursIsZero.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/MinOccursIsZero.cpp?rev=380139&r1=380138&r2=380139&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/MinOccursIsZero.cpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/MinOccursIsZero.cpp Thu Feb 23 07:08:23 2006
@@ -37,9 +37,9 @@
 }
 
 void MinOccursIsZero::optionalElements(xsd__string Value0, xsd__integer * Value1, SimpleComplexType * Value2, AXIS_OUT_PARAM xsd__string * OutValue0, AXIS_OUT_PARAM xsd__integer ** OutValue1, AXIS_OUT_PARAM SimpleComplexType ** OutValue2)  
-{
-	OutValue0 = &Value0;
-	OutValue1 = &Value1;
-	OutValue2 = &Value2;
+{
+  *OutValue0 = Value0;
+  *OutValue1 = Value1;
+  *OutValue2 = Value2;
 }