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 cd...@apache.org on 2005/08/26 07:57:32 UTC

cvs commit: ws-axis/c/tests/auto_build/testcases/server/cpp ADEC_MAST_Port.cpp AllTestSoap.cpp ArrayTestPortType.cpp AxisBench.cpp Calculator.cpp ChoiceTestSoap.cpp ComplexLists.cpp EnumerationWS.cpp ExtensibilityQueryPortType.cpp FourLevelTestDocInterface.cpp InOut.cpp InteropTestPortType.cpp InteropTestPortTypeDoc.cpp LargeReturningString.cpp ManyTypeRefRoot.cpp MathOps.cpp MultiOut.cpp NestedComplex.cpp NillableArrays.cpp PrimitiveAndArray.cpp RecurseTypesWS.cpp RefTestPortType.cpp SimpleArrays.cpp SimpleTypeArrayWS.cpp SimpleTypeInnerUnboundedInOutputWS.cpp SimpleTypeInnerUnboundedWS.cpp Timeout.cpp XSDAttribute.cpp XSDElement.cpp XSDElementNil.cpp XSD_ENTITIESPort.cpp XSD_ENTITYPort.cpp XSD_IDPort.cpp XSD_IDREFPort.cpp XSD_IDREFSPort.cpp XSD_NCName.cpp XSD_NMTOKENPort.cpp XSD_NMTOKENSPort.cpp XSD_NOTATIONPort.cpp XSD_Name.cpp XSD_QName.cpp XSD_anyURI.cpp XSD_base64Binary.cpp XSD_boolean.cpp XSD_byte.cpp XSD_date.cpp XSD_dateTime.cpp XSD_decimal.cpp XSD_double.cpp XSD_duration.cpp XSD_float.cpp XSD_gDay.cpp XSD_gMonth.cpp XSD_gMonthDay.cpp XSD_gYear.cpp XSD_gYearMonth.cpp XSD_hexBinary.cpp XSD_int.cpp XSD_integer.cpp XSD_language.cpp XSD_long.cpp XSD_negativeInteger.cpp XSD_nonNegativeInteger.cpp XSD_nonPositiveInteger.cpp XSD_normalizedString.cpp XSD_positiveInteger.cpp XSD_short.cpp XSD_string.cpp XSD_time.cpp XSD_token.cpp XSD_unsignedByte.cpp XSD_unsignedInt.cpp XSD_unsignedLong.cpp XSD_unsignedShort.cpp operations.cpp

cdinapala    2005/08/25 22:57:31

  Modified:    c/tests/auto_build/testcases/server/cpp ADEC_MAST_Port.cpp
                        AllTestSoap.cpp ArrayTestPortType.cpp AxisBench.cpp
                        Calculator.cpp ChoiceTestSoap.cpp ComplexLists.cpp
                        EnumerationWS.cpp ExtensibilityQueryPortType.cpp
                        FourLevelTestDocInterface.cpp InOut.cpp
                        InteropTestPortType.cpp InteropTestPortTypeDoc.cpp
                        LargeReturningString.cpp ManyTypeRefRoot.cpp
                        MathOps.cpp MultiOut.cpp NestedComplex.cpp
                        NillableArrays.cpp PrimitiveAndArray.cpp
                        RecurseTypesWS.cpp RefTestPortType.cpp
                        SimpleArrays.cpp SimpleTypeArrayWS.cpp
                        SimpleTypeInnerUnboundedInOutputWS.cpp
                        SimpleTypeInnerUnboundedWS.cpp Timeout.cpp
                        XSDAttribute.cpp XSDElement.cpp XSDElementNil.cpp
                        XSD_ENTITIESPort.cpp XSD_ENTITYPort.cpp
                        XSD_IDPort.cpp XSD_IDREFPort.cpp XSD_IDREFSPort.cpp
                        XSD_NCName.cpp XSD_NMTOKENPort.cpp
                        XSD_NMTOKENSPort.cpp XSD_NOTATIONPort.cpp
                        XSD_Name.cpp XSD_QName.cpp XSD_anyURI.cpp
                        XSD_base64Binary.cpp XSD_boolean.cpp XSD_byte.cpp
                        XSD_date.cpp XSD_dateTime.cpp XSD_decimal.cpp
                        XSD_double.cpp XSD_duration.cpp XSD_float.cpp
                        XSD_gDay.cpp XSD_gMonth.cpp XSD_gMonthDay.cpp
                        XSD_gYear.cpp XSD_gYearMonth.cpp XSD_hexBinary.cpp
                        XSD_int.cpp XSD_integer.cpp XSD_language.cpp
                        XSD_long.cpp XSD_negativeInteger.cpp
                        XSD_nonNegativeInteger.cpp
                        XSD_nonPositiveInteger.cpp XSD_normalizedString.cpp
                        XSD_positiveInteger.cpp XSD_short.cpp
                        XSD_string.cpp XSD_time.cpp XSD_token.cpp
                        XSD_unsignedByte.cpp XSD_unsignedInt.cpp
                        XSD_unsignedLong.cpp XSD_unsignedShort.cpp
                        operations.cpp
  Log:
  Has removed init() and fini() from ther server stubs.(AXISCPP-814)
  
  Revision  Changes    Path
  1.3       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/ADEC_MAST_Port.cpp
  
  Index: ADEC_MAST_Port.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/ADEC_MAST_Port.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ADEC_MAST_Port.cpp	18 May 2005 11:04:50 -0000	1.2
  +++ ADEC_MAST_Port.cpp	26 Aug 2005 05:57:28 -0000	1.3
  @@ -35,18 +35,7 @@
   void ADEC_MAST_Port::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void ADEC_MAST_Port::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void ADEC_MAST_Port::fini()
  -{
  -}
  +
   SummaryResult* ADEC_MAST_Port::doGetSummary(xsd__string Value0, xsd__int Value1, xsd__double Value2, xsd__int Value3)  
   {
   	SummaryResult* outParam = new SummaryResult();
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/AllTestSoap.cpp
  
  Index: AllTestSoap.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/AllTestSoap.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- AllTestSoap.cpp	16 May 2005 05:18:42 -0000	1.1
  +++ AllTestSoap.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void AllTestSoap::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void AllTestSoap::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void AllTestSoap::fini()
  -{
  -}
  +
   AllComplexType* AllTestSoap::echoAll(AllComplexType* Value0)  
   {
   	AllComplexType* outParam = new AllComplexType();
  
  
  
  1.4       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/ArrayTestPortType.cpp
  
  Index: ArrayTestPortType.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/ArrayTestPortType.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ArrayTestPortType.cpp	31 Mar 2005 04:07:37 -0000	1.3
  +++ ArrayTestPortType.cpp	26 Aug 2005 05:57:28 -0000	1.4
  @@ -34,18 +34,7 @@
   void ArrayTestPortType::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void ArrayTestPortType::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void ArrayTestPortType::fini()
  -{
  -}
  +
   intArrayType* ArrayTestPortType::echoIntArray(intArrayType* Value0)  
   {
   	return Value0;
  
  
  
  1.5       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/AxisBench.cpp
  
  Index: AxisBench.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/AxisBench.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- AxisBench.cpp	23 Mar 2005 15:45:10 -0000	1.4
  +++ AxisBench.cpp	26 Aug 2005 05:57:28 -0000	1.5
  @@ -34,18 +34,7 @@
   void AxisBench::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void AxisBench::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void AxisBench::fini()
  -{
  -}
  +
   BenchDataType* AxisBench::doBenchRequest(BenchDataType* Value0)
   {
       return Value0;
  
  
  
  1.5       +0 -2      ws-axis/c/tests/auto_build/testcases/server/cpp/Calculator.cpp
  
  Index: Calculator.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/Calculator.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Calculator.cpp	28 Mar 2005 08:56:26 -0000	1.4
  +++ Calculator.cpp	26 Aug 2005 05:57:28 -0000	1.5
  @@ -20,8 +20,6 @@
   #include "Calculator.hpp"
   
   void Calculator::onFault(){}
  -void Calculator::init(){}
  -void Calculator::fini(){}
   
   Calculator::Calculator()
   {
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/ChoiceTestSoap.cpp
  
  Index: ChoiceTestSoap.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/ChoiceTestSoap.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ChoiceTestSoap.cpp	6 May 2005 09:31:09 -0000	1.1
  +++ ChoiceTestSoap.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void ChoiceTestSoap::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void ChoiceTestSoap::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void ChoiceTestSoap::fini()
  -{
  -}
  +
   ChoiceComplexType* ChoiceTestSoap::echoChoice(ChoiceComplexType* Value0)  
   {
   	return Value0;
  
  
  
  1.3       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/ComplexLists.cpp
  
  Index: ComplexLists.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/ComplexLists.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ComplexLists.cpp	23 Jun 2005 03:30:32 -0000	1.2
  +++ ComplexLists.cpp	26 Aug 2005 05:57:28 -0000	1.3
  @@ -20,18 +20,7 @@
   void ComplexLists::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void ComplexLists::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void ComplexLists::fini()
  -{
  -}
  +
   attrlisterr* ComplexLists::multilist(m_list* Value0, attrlist* Value1)  
   {
   	attrlisterr* ret=new attrlisterr();
  
  
  
  1.4       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/EnumerationWS.cpp
  
  Index: EnumerationWS.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/EnumerationWS.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- EnumerationWS.cpp	23 Mar 2005 15:45:10 -0000	1.3
  +++ EnumerationWS.cpp	26 Aug 2005 05:57:28 -0000	1.4
  @@ -34,18 +34,7 @@
   void EnumerationWS::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void EnumerationWS::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void EnumerationWS::fini()
  -{
  -}
  +
   Type1* EnumerationWS::getInput(Type1* Value0)  
   {
   	return Value0;
  
  
  
  1.4       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/ExtensibilityQueryPortType.cpp
  
  Index: ExtensibilityQueryPortType.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/ExtensibilityQueryPortType.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ExtensibilityQueryPortType.cpp	23 Mar 2005 15:45:10 -0000	1.3
  +++ ExtensibilityQueryPortType.cpp	26 Aug 2005 05:57:28 -0000	1.4
  @@ -34,18 +34,7 @@
   void ExtensibilityQueryPortType::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void ExtensibilityQueryPortType::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void ExtensibilityQueryPortType::fini()
  -{
  -}
  +
   AnyType* ExtensibilityQueryPortType::query(AnyType* Value0)  
   {
   	return Value0;
  
  
  
  1.3       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/FourLevelTestDocInterface.cpp
  
  Index: FourLevelTestDocInterface.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/FourLevelTestDocInterface.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- FourLevelTestDocInterface.cpp	23 Mar 2005 15:45:10 -0000	1.2
  +++ FourLevelTestDocInterface.cpp	26 Aug 2005 05:57:28 -0000	1.3
  @@ -35,18 +35,7 @@
   void FourLevelTestDocInterface::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void FourLevelTestDocInterface::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void FourLevelTestDocInterface::fini()
  -{
  -}
  +
   SecondLevelElemType_Array FourLevelTestDocInterface::RetrieveTestDoc(SecondLevelElemType_Array Value0)  
   {
   	//if (NULL == Value0) 
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/InOut.cpp
  
  Index: InOut.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/InOut.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- InOut.cpp	27 May 2005 10:21:19 -0000	1.1
  +++ InOut.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void InOut::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void InOut::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void InOut::fini()
  -{
  -}
  +
   void InOut::noParametersNoReturn()  
   {
   }
  
  
  
  1.4       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/InteropTestPortType.cpp
  
  Index: InteropTestPortType.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/InteropTestPortType.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- InteropTestPortType.cpp	31 Mar 2005 04:07:37 -0000	1.3
  +++ InteropTestPortType.cpp	26 Aug 2005 05:57:28 -0000	1.4
  @@ -34,18 +34,7 @@
   void InteropTestPortType::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void InteropTestPortType::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void InteropTestPortType::fini()
  -{
  -}
  +
   xsd__string InteropTestPortType::echoString(xsd__string Value0)  
   {	return Value0;
   }
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/InteropTestPortTypeDoc.cpp
  
  Index: InteropTestPortTypeDoc.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/InteropTestPortTypeDoc.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- InteropTestPortTypeDoc.cpp	1 Jun 2005 10:59:29 -0000	1.1
  +++ InteropTestPortTypeDoc.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void InteropTestPortTypeDoc::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void InteropTestPortTypeDoc::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void InteropTestPortTypeDoc::fini()
  -{
  -}
  +
   xsd__string InteropTestPortTypeDoc::echoString(xsd__string Value0)  
   {
   	return Value0;
  
  
  
  1.6       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/LargeReturningString.cpp
  
  Index: LargeReturningString.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/LargeReturningString.cpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- LargeReturningString.cpp	30 Mar 2005 08:34:58 -0000	1.5
  +++ LargeReturningString.cpp	26 Aug 2005 05:57:28 -0000	1.6
  @@ -20,18 +20,7 @@
   void LargeReturningString::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void LargeReturningString::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void LargeReturningString::fini()
  -{
  -}
  +
   xsd__string LargeReturningString::getLargeString(xsd__int Value0)  
   {
   	xsd__string ret= new char[Value0 +1];
  
  
  
  1.4       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/ManyTypeRefRoot.cpp
  
  Index: ManyTypeRefRoot.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/ManyTypeRefRoot.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ManyTypeRefRoot.cpp	23 Mar 2005 15:45:10 -0000	1.3
  +++ ManyTypeRefRoot.cpp	26 Aug 2005 05:57:28 -0000	1.4
  @@ -34,18 +34,7 @@
   void ManyTypeRefRoot::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void ManyTypeRefRoot::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void ManyTypeRefRoot::fini()
  -{
  -}
  +
   Type1_Array ManyTypeRefRoot::getInput(Type1_Array Value0)  
   {
   	return Value0;
  
  
  
  1.5       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/MathOps.cpp
  
  Index: MathOps.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/MathOps.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- MathOps.cpp	16 Jun 2005 08:09:54 -0000	1.4
  +++ MathOps.cpp	26 Aug 2005 05:57:28 -0000	1.5
  @@ -34,18 +34,7 @@
   void MathOps::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void MathOps::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void MathOps::fini()
  -{
  -}
  +
   xsd__int MathOps::div(xsd__int Value0, xsd__int Value1)  
   {
        if (Value1 == 0) 
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/MultiOut.cpp
  
  Index: MultiOut.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/MultiOut.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- MultiOut.cpp	8 Aug 2005 08:38:47 -0000	1.1
  +++ MultiOut.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void MultiOut::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void MultiOut::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void MultiOut::fini()
  -{
  -}
  +
   void MultiOut::get(AXIS_OUT_PARAM xsd__string *OutValue0, AXIS_OUT_PARAM xsd__integer *OutValue1, AXIS_OUT_PARAM xsd__int *OutValue2, AXIS_OUT_PARAM xsd__long *OutValue3, AXIS_OUT_PARAM xsd__short *OutValue4, AXIS_OUT_PARAM xsd__decimal *OutValue5, AXIS_OUT_PARAM xsd__float *OutValue6, AXIS_OUT_PARAM xsd__double *OutValue7, AXIS_OUT_PARAM xsd__boolean *OutValue8, AXIS_OUT_PARAM xsd__byte *OutValue9)  
   {
   	*OutValue0 = "Hello Mark";
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/NestedComplex.cpp
  
  Index: NestedComplex.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/NestedComplex.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- NestedComplex.cpp	6 Apr 2005 05:07:56 -0000	1.1
  +++ NestedComplex.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void NestedComplex::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void NestedComplex::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void NestedComplex::fini()
  -{
  -}
  +
   ComplexType2* NestedComplex::echoNestedComplex(ComplexType2* Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/NillableArrays.cpp
  
  Index: NillableArrays.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/NillableArrays.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- NillableArrays.cpp	7 Jun 2005 06:01:14 -0000	1.1
  +++ NillableArrays.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void NillableArrays::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void NillableArrays::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void NillableArrays::fini()
  -{
  -}
  +
   xsd__boolean_Array * NillableArrays::echoBooleanArray(xsd__boolean_Array * Value0)  
   {
   	xsd__boolean_Array * outArray = new xsd__boolean_Array();
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/PrimitiveAndArray.cpp
  
  Index: PrimitiveAndArray.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/PrimitiveAndArray.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- PrimitiveAndArray.cpp	6 Apr 2005 07:44:12 -0000	1.1
  +++ PrimitiveAndArray.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void PrimitiveAndArray::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void PrimitiveAndArray::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void PrimitiveAndArray::fini()
  -{
  -}
  +
   ComplexReturn* PrimitiveAndArray::sendPrimitiveAndArray(xsd__int Value0, xsd__int_Array Value1)  
   {
   	ComplexReturn *ret=new ComplexReturn();
  
  
  
  1.4       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/RecurseTypesWS.cpp
  
  Index: RecurseTypesWS.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/RecurseTypesWS.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- RecurseTypesWS.cpp	23 Mar 2005 15:45:10 -0000	1.3
  +++ RecurseTypesWS.cpp	26 Aug 2005 05:57:28 -0000	1.4
  @@ -34,18 +34,7 @@
   void RecurseTypesWS::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void RecurseTypesWS::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void RecurseTypesWS::fini()
  -{
  -}
  +
   Type1* RecurseTypesWS::getInput(Type1* Value0)  
   {
   	return Value0;
  
  
  
  1.4       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/RefTestPortType.cpp
  
  Index: RefTestPortType.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/RefTestPortType.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- RefTestPortType.cpp	23 Mar 2005 15:45:10 -0000	1.3
  +++ RefTestPortType.cpp	26 Aug 2005 05:57:28 -0000	1.4
  @@ -34,18 +34,7 @@
   void RefTestPortType::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void RefTestPortType::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void RefTestPortType::fini()
  -{
  -}
  +
   intType* RefTestPortType::echoInt(intType* Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/SimpleArrays.cpp
  
  Index: SimpleArrays.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/SimpleArrays.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SimpleArrays.cpp	30 Mar 2005 09:45:12 -0000	1.1
  +++ SimpleArrays.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -20,18 +20,7 @@
   void SimpleArrays::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void SimpleArrays::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void SimpleArrays::fini()
  -{
  -}
  +
   xsd__boolean_Array SimpleArrays::echoBooleanArray(xsd__boolean_Array Value0)  
   {
   	return Value0;
  
  
  
  1.3       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/SimpleTypeArrayWS.cpp
  
  Index: SimpleTypeArrayWS.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/SimpleTypeArrayWS.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- SimpleTypeArrayWS.cpp	23 Mar 2005 15:45:10 -0000	1.2
  +++ SimpleTypeArrayWS.cpp	26 Aug 2005 05:57:28 -0000	1.3
  @@ -34,18 +34,7 @@
   void SimpleTypeArrayWS::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void SimpleTypeArrayWS::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void SimpleTypeArrayWS::fini()
  -{
  -}
  +
   Type* SimpleTypeArrayWS::getInput(Type* Value0)  
   {
   	return Value0;
  
  
  
  1.4       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/SimpleTypeInnerUnboundedInOutputWS.cpp
  
  Index: SimpleTypeInnerUnboundedInOutputWS.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/SimpleTypeInnerUnboundedInOutputWS.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- SimpleTypeInnerUnboundedInOutputWS.cpp	23 Mar 2005 15:45:10 -0000	1.3
  +++ SimpleTypeInnerUnboundedInOutputWS.cpp	26 Aug 2005 05:57:28 -0000	1.4
  @@ -34,18 +34,7 @@
   void SimpleTypeInnerUnboundedInOutputWS::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void SimpleTypeInnerUnboundedInOutputWS::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void SimpleTypeInnerUnboundedInOutputWS::fini()
  -{
  -}
  +
   Type1* SimpleTypeInnerUnboundedInOutputWS::getInput(xsd__int Value0)  
   {
   	Type1* ret=new Type1();
  
  
  
  1.4       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/SimpleTypeInnerUnboundedWS.cpp
  
  Index: SimpleTypeInnerUnboundedWS.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/SimpleTypeInnerUnboundedWS.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- SimpleTypeInnerUnboundedWS.cpp	23 Mar 2005 15:45:10 -0000	1.3
  +++ SimpleTypeInnerUnboundedWS.cpp	26 Aug 2005 05:57:28 -0000	1.4
  @@ -34,18 +34,7 @@
   void SimpleTypeInnerUnboundedWS::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void SimpleTypeInnerUnboundedWS::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void SimpleTypeInnerUnboundedWS::fini()
  -{
  -}
  +
   Type1* SimpleTypeInnerUnboundedWS::getInput(Type1* Value0)  
   {
   	return Value0;
  
  
  
  1.3       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/Timeout.cpp
  
  Index: Timeout.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/Timeout.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Timeout.cpp	23 Mar 2005 15:45:10 -0000	1.2
  +++ Timeout.cpp	26 Aug 2005 05:57:28 -0000	1.3
  @@ -34,18 +34,7 @@
   void Timeout::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void Timeout::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void Timeout::fini()
  -{
  -}
  +
   xsd__int Timeout::add(xsd__int Value0, xsd__int Value1)  
   {
   	return Value1;
  
  
  
  1.3       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSDAttribute.cpp
  
  Index: XSDAttribute.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSDAttribute.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- XSDAttribute.cpp	23 Mar 2005 15:45:10 -0000	1.2
  +++ XSDAttribute.cpp	26 Aug 2005 05:57:28 -0000	1.3
  @@ -34,18 +34,7 @@
   void XSDAttribute::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSDAttribute::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSDAttribute::fini()
  -{
  -}
  +
   BooleanType* XSDAttribute::getDataBoolean(BooleanType* Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSDElement.cpp
  
  Index: XSDElement.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSDElement.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSDElement.cpp	30 Mar 2005 09:45:12 -0000	1.1
  +++ XSDElement.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSDElement::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSDElement::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSDElement::fini()
  -{
  -}
  +
   xsd__int XSDElement::setGetDataInt(xsd__int Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSDElementNil.cpp
  
  Index: XSDElementNil.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSDElementNil.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSDElementNil.cpp	30 Mar 2005 09:45:12 -0000	1.1
  +++ XSDElementNil.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSDElementNil::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSDElementNil::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSDElementNil::fini()
  -{
  -}
  +
   xsd__int * XSDElementNil::setGetDataInt(xsd__int * Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_ENTITIESPort.cpp
  
  Index: XSD_ENTITIESPort.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_ENTITIESPort.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_ENTITIESPort.cpp	29 Jul 2005 11:19:25 -0000	1.1
  +++ XSD_ENTITIESPort.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_ENTITIESPort::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_ENTITIESPort::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_ENTITIESPort::fini()
  -{
  -}
  +
   xsd__ENTITIES XSD_ENTITIESPort::asNonNillableElement(xsd__ENTITIES Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_ENTITYPort.cpp
  
  Index: XSD_ENTITYPort.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_ENTITYPort.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_ENTITYPort.cpp	29 Jul 2005 11:19:25 -0000	1.1
  +++ XSD_ENTITYPort.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_ENTITYPort::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_ENTITYPort::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_ENTITYPort::fini()
  -{
  -}
  +
   xsd__ENTITY XSD_ENTITYPort::asNonNillableElement(xsd__ENTITY Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_IDPort.cpp
  
  Index: XSD_IDPort.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_IDPort.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_IDPort.cpp	2 Aug 2005 05:02:00 -0000	1.1
  +++ XSD_IDPort.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_IDPort::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_IDPort::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_IDPort::fini()
  -{
  -}
  +
   xsd__ID XSD_IDPort::asNonNillableElement(xsd__ID Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_IDREFPort.cpp
  
  Index: XSD_IDREFPort.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_IDREFPort.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_IDREFPort.cpp	2 Aug 2005 05:02:00 -0000	1.1
  +++ XSD_IDREFPort.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_IDREFPort::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_IDREFPort::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_IDREFPort::fini()
  -{
  -}
  +
   xsd__IDREF XSD_IDREFPort::asNonNillableElement(xsd__IDREF Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_IDREFSPort.cpp
  
  Index: XSD_IDREFSPort.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_IDREFSPort.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_IDREFSPort.cpp	2 Aug 2005 05:02:00 -0000	1.1
  +++ XSD_IDREFSPort.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_IDREFSPort::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_IDREFSPort::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_IDREFSPort::fini()
  -{
  -}
  +
   xsd__IDREFS XSD_IDREFSPort::asNonNillableElement(xsd__IDREFS Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_NCName.cpp
  
  Index: XSD_NCName.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_NCName.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_NCName.cpp	2 Aug 2005 08:32:55 -0000	1.1
  +++ XSD_NCName.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_NCName::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_NCName::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_NCName::fini()
  -{
  -}
  +
   xsd__NCName XSD_NCName::asNonNillableElement(xsd__NCName Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_NMTOKENPort.cpp
  
  Index: XSD_NMTOKENPort.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_NMTOKENPort.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_NMTOKENPort.cpp	4 Aug 2005 08:49:32 -0000	1.1
  +++ XSD_NMTOKENPort.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_NMTOKENPort::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_NMTOKENPort::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_NMTOKENPort::fini()
  -{
  -}
  +
   xsd__NMTOKEN XSD_NMTOKENPort::asNonNillableElement(xsd__NMTOKEN Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_NMTOKENSPort.cpp
  
  Index: XSD_NMTOKENSPort.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_NMTOKENSPort.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_NMTOKENSPort.cpp	4 Aug 2005 08:49:33 -0000	1.1
  +++ XSD_NMTOKENSPort.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_NMTOKENSPort::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_NMTOKENSPort::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_NMTOKENSPort::fini()
  -{
  -}
  +
   xsd__NMTOKENS XSD_NMTOKENSPort::asNonNillableElement(xsd__NMTOKENS Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_NOTATIONPort.cpp
  
  Index: XSD_NOTATIONPort.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_NOTATIONPort.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_NOTATIONPort.cpp	8 Aug 2005 08:38:47 -0000	1.1
  +++ XSD_NOTATIONPort.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_NOTATIONPort::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_NOTATIONPort::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_NOTATIONPort::fini()
  -{
  -}
  +
   xsd__NOTATION XSD_NOTATIONPort::asNonNillableElement(xsd__NOTATION Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_Name.cpp
  
  Index: XSD_Name.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_Name.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_Name.cpp	2 Aug 2005 08:32:55 -0000	1.1
  +++ XSD_Name.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_Name::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_Name::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_Name::fini()
  -{
  -}
  +
   xsd__Name XSD_Name::asNonNillableElement(xsd__Name Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_QName.cpp
  
  Index: XSD_QName.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_QName.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_QName.cpp	5 Aug 2005 09:26:22 -0000	1.1
  +++ XSD_QName.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_QName::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_QName::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_QName::fini()
  -{
  -}
  +
   xsd__QName XSD_QName::asNonNillableElement(xsd__QName Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_anyURI.cpp
  
  Index: XSD_anyURI.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_anyURI.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_anyURI.cpp	29 Jul 2005 10:08:19 -0000	1.1
  +++ XSD_anyURI.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_anyURI::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_anyURI::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_anyURI::fini()
  -{
  -}
  +
   xsd__anyURI XSD_anyURI::asNonNillableElement(xsd__anyURI Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_base64Binary.cpp
  
  Index: XSD_base64Binary.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_base64Binary.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_base64Binary.cpp	29 Jul 2005 11:19:25 -0000	1.1
  +++ XSD_base64Binary.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_base64Binary::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_base64Binary::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_base64Binary::fini()
  -{
  -}
  +
   xsd__base64Binary XSD_base64Binary::asNonNillableElement(xsd__base64Binary Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_boolean.cpp
  
  Index: XSD_boolean.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_boolean.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_boolean.cpp	28 Jul 2005 11:59:28 -0000	1.1
  +++ XSD_boolean.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_boolean::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_boolean::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_boolean::fini()
  -{
  -}
  +
   xsd__boolean XSD_boolean::asNonNillableElement(xsd__boolean Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_byte.cpp
  
  Index: XSD_byte.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_byte.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_byte.cpp	28 Jul 2005 11:59:28 -0000	1.1
  +++ XSD_byte.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_byte::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_byte::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_byte::fini()
  -{
  -}
  +
   xsd__byte XSD_byte::asNonNillableElement(xsd__byte Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_date.cpp
  
  Index: XSD_date.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_date.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_date.cpp	28 Jul 2005 11:59:28 -0000	1.1
  +++ XSD_date.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_date::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_date::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_date::fini()
  -{
  -}
  +
   xsd__date XSD_date::asNonNillableElement(xsd__date Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_dateTime.cpp
  
  Index: XSD_dateTime.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_dateTime.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_dateTime.cpp	29 Jul 2005 10:08:19 -0000	1.1
  +++ XSD_dateTime.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_dateTime::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_dateTime::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_dateTime::fini()
  -{
  -}
  +
   xsd__dateTime XSD_dateTime::asNonNillableElement(xsd__dateTime Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_decimal.cpp
  
  Index: XSD_decimal.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_decimal.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_decimal.cpp	29 Jul 2005 10:08:19 -0000	1.1
  +++ XSD_decimal.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_decimal::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_decimal::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_decimal::fini()
  -{
  -}
  +
   xsd__decimal XSD_decimal::asNonNillableElement(xsd__decimal Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_double.cpp
  
  Index: XSD_double.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_double.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_double.cpp	29 Jul 2005 10:08:19 -0000	1.1
  +++ XSD_double.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_double::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_double::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_double::fini()
  -{
  -}
  +
   xsd__double XSD_double::asNonNillableElement(xsd__double Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_duration.cpp
  
  Index: XSD_duration.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_duration.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_duration.cpp	29 Jul 2005 10:08:19 -0000	1.1
  +++ XSD_duration.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_duration::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_duration::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_duration::fini()
  -{
  -}
  +
   xsd__duration XSD_duration::asNonNillableElement(xsd__duration Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_float.cpp
  
  Index: XSD_float.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_float.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_float.cpp	29 Jul 2005 11:19:25 -0000	1.1
  +++ XSD_float.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_float::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_float::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_float::fini()
  -{
  -}
  +
   xsd__float XSD_float::asNonNillableElement(xsd__float Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_gDay.cpp
  
  Index: XSD_gDay.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_gDay.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_gDay.cpp	29 Jul 2005 11:19:25 -0000	1.1
  +++ XSD_gDay.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_gDay::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_gDay::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_gDay::fini()
  -{
  -}
  +
   xsd__gDay XSD_gDay::asNonNillableElement(xsd__gDay Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_gMonth.cpp
  
  Index: XSD_gMonth.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_gMonth.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_gMonth.cpp	1 Aug 2005 07:48:54 -0000	1.1
  +++ XSD_gMonth.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_gMonth::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_gMonth::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_gMonth::fini()
  -{
  -}
  +
   xsd__gMonth XSD_gMonth::asNonNillableElement(xsd__gMonth Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_gMonthDay.cpp
  
  Index: XSD_gMonthDay.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_gMonthDay.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_gMonthDay.cpp	1 Aug 2005 07:48:54 -0000	1.1
  +++ XSD_gMonthDay.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_gMonthDay::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_gMonthDay::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_gMonthDay::fini()
  -{
  -}
  +
   xsd__gMonthDay XSD_gMonthDay::asNonNillableElement(xsd__gMonthDay Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_gYear.cpp
  
  Index: XSD_gYear.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_gYear.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_gYear.cpp	1 Aug 2005 07:48:54 -0000	1.1
  +++ XSD_gYear.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_gYear::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_gYear::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_gYear::fini()
  -{
  -}
  +
   xsd__gYear XSD_gYear::asNonNillableElement(xsd__gYear Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_gYearMonth.cpp
  
  Index: XSD_gYearMonth.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_gYearMonth.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_gYearMonth.cpp	1 Aug 2005 07:48:54 -0000	1.1
  +++ XSD_gYearMonth.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_gYearMonth::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_gYearMonth::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_gYearMonth::fini()
  -{
  -}
  +
   xsd__gYearMonth XSD_gYearMonth::asNonNillableElement(xsd__gYearMonth Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_hexBinary.cpp
  
  Index: XSD_hexBinary.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_hexBinary.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_hexBinary.cpp	1 Aug 2005 07:48:54 -0000	1.1
  +++ XSD_hexBinary.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_hexBinary::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_hexBinary::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_hexBinary::fini()
  -{
  -}
  +
   xsd__hexBinary XSD_hexBinary::asNonNillableElement(xsd__hexBinary Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_int.cpp
  
  Index: XSD_int.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_int.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_int.cpp	2 Aug 2005 05:02:00 -0000	1.1
  +++ XSD_int.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_int::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_int::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_int::fini()
  -{
  -}
  +
   xsd__int XSD_int::asNonNillableElement(xsd__int Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_integer.cpp
  
  Index: XSD_integer.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_integer.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_integer.cpp	2 Aug 2005 05:02:00 -0000	1.1
  +++ XSD_integer.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_integer::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_integer::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_integer::fini()
  -{
  -}
  +
   xsd__integer XSD_integer::asNonNillableElement(xsd__integer Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_language.cpp
  
  Index: XSD_language.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_language.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_language.cpp	2 Aug 2005 08:32:55 -0000	1.1
  +++ XSD_language.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_language::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_language::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_language::fini()
  -{
  -}
  +
   xsd__language XSD_language::asNonNillableElement(xsd__language Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_long.cpp
  
  Index: XSD_long.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_long.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_long.cpp	2 Aug 2005 08:32:55 -0000	1.1
  +++ XSD_long.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_long::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_long::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_long::fini()
  -{
  -}
  +
   xsd__long XSD_long::asNonNillableElement(xsd__long Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_negativeInteger.cpp
  
  Index: XSD_negativeInteger.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_negativeInteger.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_negativeInteger.cpp	2 Aug 2005 08:32:55 -0000	1.1
  +++ XSD_negativeInteger.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_negativeInteger::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_negativeInteger::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_negativeInteger::fini()
  -{
  -}
  +
   xsd__negativeInteger XSD_negativeInteger::asNonNillableElement(xsd__negativeInteger Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_nonNegativeInteger.cpp
  
  Index: XSD_nonNegativeInteger.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_nonNegativeInteger.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_nonNegativeInteger.cpp	4 Aug 2005 08:49:33 -0000	1.1
  +++ XSD_nonNegativeInteger.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_nonNegativeInteger::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_nonNegativeInteger::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_nonNegativeInteger::fini()
  -{
  -}
  +
   xsd__nonNegativeInteger XSD_nonNegativeInteger::asNonNillableElement(xsd__nonNegativeInteger Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_nonPositiveInteger.cpp
  
  Index: XSD_nonPositiveInteger.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_nonPositiveInteger.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_nonPositiveInteger.cpp	4 Aug 2005 08:49:33 -0000	1.1
  +++ XSD_nonPositiveInteger.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_nonPositiveInteger::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_nonPositiveInteger::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_nonPositiveInteger::fini()
  -{
  -}
  +
   xsd__nonPositiveInteger XSD_nonPositiveInteger::asNonNillableElement(xsd__nonPositiveInteger Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_normalizedString.cpp
  
  Index: XSD_normalizedString.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_normalizedString.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_normalizedString.cpp	4 Aug 2005 08:49:33 -0000	1.1
  +++ XSD_normalizedString.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_normalizedString::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_normalizedString::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_normalizedString::fini()
  -{
  -}
  +
   xsd__normalizedString XSD_normalizedString::asNonNillableElement(xsd__normalizedString Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_positiveInteger.cpp
  
  Index: XSD_positiveInteger.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_positiveInteger.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_positiveInteger.cpp	5 Aug 2005 09:26:22 -0000	1.1
  +++ XSD_positiveInteger.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_positiveInteger::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_positiveInteger::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_positiveInteger::fini()
  -{
  -}
  +
   xsd__positiveInteger XSD_positiveInteger::asNonNillableElement(xsd__positiveInteger Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_short.cpp
  
  Index: XSD_short.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_short.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_short.cpp	28 Jul 2005 10:26:15 -0000	1.1
  +++ XSD_short.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_short::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_short::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_short::fini()
  -{
  -}
  +
   xsd__short XSD_short::asNonNillableElement(xsd__short Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_string.cpp
  
  Index: XSD_string.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_string.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_string.cpp	28 Jul 2005 10:26:15 -0000	1.1
  +++ XSD_string.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_string::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_string::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_string::fini()
  -{
  -}
  +
   xsd__string XSD_string::asNonNillableElement(xsd__string Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_time.cpp
  
  Index: XSD_time.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_time.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_time.cpp	28 Jul 2005 10:26:15 -0000	1.1
  +++ XSD_time.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_time::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_time::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_time::fini()
  -{
  -}
  +
   xsd__time XSD_time::asNonNillableElement(xsd__time Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_token.cpp
  
  Index: XSD_token.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_token.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_token.cpp	28 Jul 2005 10:26:15 -0000	1.1
  +++ XSD_token.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_token::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_token::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_token::fini()
  -{
  -}
  +
   xsd__token XSD_token::asNonNillableElement(xsd__token Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_unsignedByte.cpp
  
  Index: XSD_unsignedByte.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_unsignedByte.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_unsignedByte.cpp	28 Jul 2005 10:26:15 -0000	1.1
  +++ XSD_unsignedByte.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_unsignedByte::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_unsignedByte::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_unsignedByte::fini()
  -{
  -}
  +
   xsd__unsignedByte XSD_unsignedByte::asNonNillableElement(xsd__unsignedByte Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_unsignedInt.cpp
  
  Index: XSD_unsignedInt.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_unsignedInt.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_unsignedInt.cpp	5 Aug 2005 09:26:22 -0000	1.1
  +++ XSD_unsignedInt.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_unsignedInt::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_unsignedInt::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_unsignedInt::fini()
  -{
  -}
  +
   xsd__unsignedInt XSD_unsignedInt::asNonNillableElement(xsd__unsignedInt Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_unsignedLong.cpp
  
  Index: XSD_unsignedLong.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_unsignedLong.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_unsignedLong.cpp	5 Aug 2005 09:26:22 -0000	1.1
  +++ XSD_unsignedLong.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_unsignedLong::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_unsignedLong::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_unsignedLong::fini()
  -{
  -}
  +
   xsd__unsignedLong XSD_unsignedLong::asNonNillableElement(xsd__unsignedLong Value0)  
   {
   	return Value0;
  
  
  
  1.2       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_unsignedShort.cpp
  
  Index: XSD_unsignedShort.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/XSD_unsignedShort.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_unsignedShort.cpp	5 Aug 2005 09:26:22 -0000	1.1
  +++ XSD_unsignedShort.cpp	26 Aug 2005 05:57:28 -0000	1.2
  @@ -35,18 +35,7 @@
   void XSD_unsignedShort::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void XSD_unsignedShort::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void XSD_unsignedShort::fini()
  -{
  -}
  +
   xsd__unsignedShort XSD_unsignedShort::asNonNillableElement(xsd__unsignedShort Value0)  
   {
   	return Value0;
  
  
  
  1.4       +1 -12     ws-axis/c/tests/auto_build/testcases/server/cpp/operations.cpp
  
  Index: operations.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/server/cpp/operations.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- operations.cpp	23 Mar 2005 15:45:10 -0000	1.3
  +++ operations.cpp	26 Aug 2005 05:57:28 -0000	1.4
  @@ -34,18 +34,7 @@
   void operations::onFault()
   {
   }
  -/* This function is called by the AxisEngine when this web service
  - library is first loaded. So here we can initialize any global/static
  - data structures of this web service or open database connections */
  -void operations::init()
  -{
  -}
  -/* This function is called by the AxisEngine when this web service
  - library is unloaded. So we can deallocate any global/static data structures
  - and close database connections etc here. */
  -void operations::fini()
  -{
  -}
  +
   xsd__boolean operations::myOperation(aRecord* Value0)  
   {
   	return xsd__boolean(1);