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 2005/07/13 17:19:12 UTC

cvs commit: ws-axis/c/tests/auto_build/testcases/output XSD_ENTITIES.expected XSD_ENTITIES_ServerResponse.expected XSD_ENTITY.expected XSD_ENTITY_ServerResponse.expected XSD_ID.expected XSD_IDREF.expected XSD_IDREFS.expected XSD_IDREFS_ServerResponse.expected XSD_IDREF_ServerResponse.expected XSD_ID_ServerResponse.expected XSD_NCName.expected XSD_NCName_ServerResponse.expected XSD_NMTOKEN.expected XSD_NMTOKENS.expected XSD_NMTOKENS_ServerResponse.expected XSD_NMTOKEN_ServerResponse.expected XSD_NOTATION.expected XSD_NOTATION_ServerResponse.expected XSD_Name.expected XSD_Name_ServerResponse.expected XSD_QName.expected XSD_QName_ServerResponse.expected XSD_anyURI.expected XSD_anyURI_ServerResponse.expected XSD_language.expected XSD_language_ServerResponse.expected XSD_normalizedString.expected XSD_normalizedString_ServerResponse.expected XSD_string.expected XSD_string_ServerResponse.expected XSD_token.expected XSD_token_ServerResponse.expected

dicka       2005/07/13 08:19:12

  Modified:    c/tests/auto_build/testcases/client/cpp
                        XSD_ENTITIESClient.cpp XSD_ENTITYClient.cpp
                        XSD_IDClient.cpp XSD_IDREFClient.cpp
                        XSD_IDREFSClient.cpp XSD_NCNameClient.cpp
                        XSD_NMTOKENClient.cpp XSD_NMTOKENSClient.cpp
                        XSD_NOTATIONClient.cpp XSD_NameClient.cpp
                        XSD_QNameClient.cpp XSD_anyURIClient.cpp
                        XSD_languageClient.cpp
                        XSD_normalizedStringClient.cpp XSD_stringClient.cpp
                        XSD_tokenClient.cpp
               c/tests/auto_build/testcases/output XSD_ENTITIES.expected
                        XSD_ENTITIES_ServerResponse.expected
                        XSD_ENTITY.expected
                        XSD_ENTITY_ServerResponse.expected XSD_ID.expected
                        XSD_IDREF.expected XSD_IDREFS.expected
                        XSD_IDREFS_ServerResponse.expected
                        XSD_IDREF_ServerResponse.expected
                        XSD_ID_ServerResponse.expected XSD_NCName.expected
                        XSD_NCName_ServerResponse.expected
                        XSD_NMTOKEN.expected XSD_NMTOKENS.expected
                        XSD_NMTOKENS_ServerResponse.expected
                        XSD_NMTOKEN_ServerResponse.expected
                        XSD_NOTATION.expected
                        XSD_NOTATION_ServerResponse.expected
                        XSD_Name.expected XSD_Name_ServerResponse.expected
                        XSD_QName.expected
                        XSD_QName_ServerResponse.expected
                        XSD_anyURI.expected
                        XSD_anyURI_ServerResponse.expected
                        XSD_language.expected
                        XSD_language_ServerResponse.expected
                        XSD_normalizedString.expected
                        XSD_normalizedString_ServerResponse.expected
                        XSD_string.expected
                        XSD_string_ServerResponse.expected
                        XSD_token.expected
                        XSD_token_ServerResponse.expected
  Log:
  Yet more fixes to string based XSD testcases, to match current state of memory management paradigm.
  Also commented out unwanted testcases for (currently unsupported) optional attributes.
  
  Submitted by: Adrian Dick
  
  Revision  Changes    Path
  1.4       +3 -2      ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_ENTITIESClient.cpp
  
  Index: XSD_ENTITIESClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_ENTITIESClient.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XSD_ENTITIESClient.cpp	12 Jul 2005 09:27:46 -0000	1.3
  +++ XSD_ENTITIESClient.cpp	13 Jul 2005 15:19:09 -0000	1.4
  @@ -202,7 +202,6 @@
           {
               cout << "required attribute=<nil>" << endl;
           }
  -        delete [] input;
           delete requiredAttributeResult;
   
           // Test empty required attribute
  @@ -226,9 +225,10 @@
           {
               cout << "empty required attribute=<nil>" << endl;
           }
  -        delete [] emptyInput;
           delete requiredAttributeResult;
   
  +/* Optional Attributes currently unsupported by WSDL2Ws
  + * Exact coding of this section may change depending on chosen implementation
           // Test optional attribute, with a value
           input = new char[25];
           strcpy (input, simpleENTITIES);
  @@ -295,6 +295,7 @@
               cout << "optional attribute, not present=<not present>" << endl;
           }
           delete optionalAttributeResult;
  +*/
   
           // Test array
           xsd__ENTITIES_Array arrayInput;
  
  
  
  1.4       +4 -2      ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_ENTITYClient.cpp
  
  Index: XSD_ENTITYClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_ENTITYClient.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XSD_ENTITYClient.cpp	12 Jul 2005 09:27:46 -0000	1.3
  +++ XSD_ENTITYClient.cpp	13 Jul 2005 15:19:09 -0000	1.4
  @@ -202,7 +202,6 @@
           {
               cout << "required attribute=<nil>" << endl;
           }
  -        delete [] input;
           delete requiredAttributeResult;
   
           // Test empty required attribute
  @@ -226,9 +225,10 @@
           {
               cout << "empty required attribute=<nil>" << endl;
           }
  -        delete [] emptyInput;
           delete requiredAttributeResult;
   
  +/* Optional Attributes currently unsupported by WSDL2Ws
  + * Exact coding of this section may change depending on chosen implementation
           // Test optional attribute, with a value
           input = new char[25];
           strcpy (input, simpleENTITY);
  @@ -296,6 +296,8 @@
           }
           delete optionalAttributeResult;
   
  +*/
  +
           // Test array
           xsd__ENTITY_Array arrayInput;
           arrayInput.m_Array = new xsd__ENTITY[2];
  
  
  
  1.4       +3 -2      ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_IDClient.cpp
  
  Index: XSD_IDClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_IDClient.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XSD_IDClient.cpp	12 Jul 2005 09:27:46 -0000	1.3
  +++ XSD_IDClient.cpp	13 Jul 2005 15:19:09 -0000	1.4
  @@ -202,7 +202,6 @@
           {
               cout << "required attribute=<nil>" << endl;
           }
  -        delete [] input;
           delete requiredAttributeResult;
   
           // Test empty required attribute
  @@ -226,9 +225,10 @@
           {
               cout << "empty required attribute=<nil>" << endl;
           }
  -        delete [] emptyInput;
           delete requiredAttributeResult;
   
  +/* Optional Attributes currently unsupported by WSDL2Ws
  + * Exact coding of this section may change depending on chosen implementation
           // Test optional attribute, with a value
           input = new char[25];
           strcpy (input, simpleID);
  @@ -295,6 +295,7 @@
               cout << "optional attribute, not present=<not present>" << endl;
           }
           delete optionalAttributeResult;
  +*/
   
           // Test array
           xsd__ID_Array arrayInput;
  
  
  
  1.4       +3 -2      ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_IDREFClient.cpp
  
  Index: XSD_IDREFClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_IDREFClient.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XSD_IDREFClient.cpp	12 Jul 2005 09:27:46 -0000	1.3
  +++ XSD_IDREFClient.cpp	13 Jul 2005 15:19:09 -0000	1.4
  @@ -202,7 +202,6 @@
           {
               cout << "required attribute=<nil>" << endl;
           }
  -        delete [] input;
           delete requiredAttributeResult;
   
           // Test empty required attribute
  @@ -226,9 +225,10 @@
           {
               cout << "empty required attribute=<nil>" << endl;
           }
  -        delete [] emptyInput;
           delete requiredAttributeResult;
   
  +/* Optional Attributes currently unsupported by WSDL2Ws
  + * Exact coding of this section may change depending on chosen implementation
           // Test optional attribute, with a value
           input = new char[25];
           strcpy (input, simpleIDREF);
  @@ -295,6 +295,7 @@
               cout << "optional attribute, not present=<not present>" << endl;
           }
           delete optionalAttributeResult;
  +*/
   
           // Test array
           xsd__IDREF_Array arrayInput;
  
  
  
  1.4       +3 -2      ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_IDREFSClient.cpp
  
  Index: XSD_IDREFSClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_IDREFSClient.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XSD_IDREFSClient.cpp	12 Jul 2005 09:27:46 -0000	1.3
  +++ XSD_IDREFSClient.cpp	13 Jul 2005 15:19:09 -0000	1.4
  @@ -202,7 +202,6 @@
           {
               cout << "required attribute=<nil>" << endl;
           }
  -        delete [] input;
           delete requiredAttributeResult;
   
           // Test empty required attribute
  @@ -226,9 +225,10 @@
           {
               cout << "empty required attribute=<nil>" << endl;
           }
  -        delete [] emptyInput;
           delete requiredAttributeResult;
   
  +/* Optional Attributes currently unsupported by WSDL2Ws
  + * Exact coding of this section may change depending on chosen implementation
           // Test optional attribute, with a value
           input = new char[25];
           strcpy (input, simpleIDREFS);
  @@ -295,6 +295,7 @@
               cout << "optional attribute, not present=<not present>" << endl;
           }
           delete optionalAttributeResult;
  +*/
   
           // Test array
           xsd__IDREFS_Array arrayInput;
  
  
  
  1.4       +3 -2      ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_NCNameClient.cpp
  
  Index: XSD_NCNameClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_NCNameClient.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XSD_NCNameClient.cpp	12 Jul 2005 09:27:46 -0000	1.3
  +++ XSD_NCNameClient.cpp	13 Jul 2005 15:19:09 -0000	1.4
  @@ -202,7 +202,6 @@
           {
               cout << "required attribute=<nil>" << endl;
           }
  -        delete [] input;
           delete requiredAttributeResult;
   
           // Test empty required attribute
  @@ -226,9 +225,10 @@
           {
               cout << "empty required attribute=<nil>" << endl;
           }
  -        delete [] emptyInput;
           delete requiredAttributeResult;
   
  +/* Optional Attributes currently unsupported by WSDL2Ws
  + * Exact coding of this section may change depending on chosen implementation
           // Test optional attribute, with a value
           input = new char[25];
           strcpy (input, simpleNCName);
  @@ -295,6 +295,7 @@
               cout << "optional attribute, not present=<not present>" << endl;
           }
           delete optionalAttributeResult;
  +*/
   
           // Test array
           xsd__NCName_Array arrayInput;
  
  
  
  1.4       +3 -2      ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_NMTOKENClient.cpp
  
  Index: XSD_NMTOKENClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_NMTOKENClient.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XSD_NMTOKENClient.cpp	12 Jul 2005 09:27:46 -0000	1.3
  +++ XSD_NMTOKENClient.cpp	13 Jul 2005 15:19:09 -0000	1.4
  @@ -202,7 +202,6 @@
           {
               cout << "required attribute=<nil>" << endl;
           }
  -        delete [] input;
           delete requiredAttributeResult;
   
           // Test empty required attribute
  @@ -226,9 +225,10 @@
           {
               cout << "empty required attribute=<nil>" << endl;
           }
  -        delete [] emptyInput;
           delete requiredAttributeResult;
   
  +/* Optional Attributes currently unsupported by WSDL2Ws
  + * Exact coding of this section may change depending on chosen implementation
           // Test optional attribute, with a value
           input = new char[25];
           strcpy (input, simpleNMTOKEN);
  @@ -295,6 +295,7 @@
               cout << "optional attribute, not present=<not present>" << endl;
           }
           delete optionalAttributeResult;
  +*/
   
           // Test array
           xsd__NMTOKEN_Array arrayInput;
  
  
  
  1.4       +3 -2      ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_NMTOKENSClient.cpp
  
  Index: XSD_NMTOKENSClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_NMTOKENSClient.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XSD_NMTOKENSClient.cpp	12 Jul 2005 09:27:46 -0000	1.3
  +++ XSD_NMTOKENSClient.cpp	13 Jul 2005 15:19:09 -0000	1.4
  @@ -202,7 +202,6 @@
           {
               cout << "required attribute=<nil>" << endl;
           }
  -        delete [] input;
           delete requiredAttributeResult;
   
           // Test empty required attribute
  @@ -226,9 +225,10 @@
           {
               cout << "empty required attribute=<nil>" << endl;
           }
  -        delete [] emptyInput;
           delete requiredAttributeResult;
   
  +/* Optional Attributes currently unsupported by WSDL2Ws
  + * Exact coding of this section may change depending on chosen implementation
           // Test optional attribute, with a value
           input = new char[25];
           strcpy (input, simpleNMTOKENS);
  @@ -295,6 +295,7 @@
               cout << "optional attribute, not present=<not present>" << endl;
           }
           delete optionalAttributeResult;
  +*/
   
           // Test array
           xsd__NMTOKENS_Array arrayInput;
  
  
  
  1.4       +3 -2      ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_NOTATIONClient.cpp
  
  Index: XSD_NOTATIONClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_NOTATIONClient.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XSD_NOTATIONClient.cpp	12 Jul 2005 09:27:46 -0000	1.3
  +++ XSD_NOTATIONClient.cpp	13 Jul 2005 15:19:09 -0000	1.4
  @@ -202,7 +202,6 @@
           {
               cout << "required attribute=<nil>" << endl;
           }
  -        delete [] input;
           delete requiredAttributeResult;
   
           // Test empty required attribute
  @@ -226,9 +225,10 @@
           {
               cout << "empty required attribute=<nil>" << endl;
           }
  -        delete [] emptyInput;
           delete requiredAttributeResult;
   
  +/* Optional Attributes currently unsupported by WSDL2Ws
  + * Exact coding of this section may change depending on chosen implementation
           // Test optional attribute, with a value
           input = new char[25];
           strcpy (input, simpleNOTATION);
  @@ -295,6 +295,7 @@
               cout << "optional attribute, not present=<not present>" << endl;
           }
           delete optionalAttributeResult;
  +*/
   
           // Test array
           xsd__NOTATION_Array arrayInput;
  
  
  
  1.4       +3 -2      ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_NameClient.cpp
  
  Index: XSD_NameClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_NameClient.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XSD_NameClient.cpp	12 Jul 2005 09:27:46 -0000	1.3
  +++ XSD_NameClient.cpp	13 Jul 2005 15:19:09 -0000	1.4
  @@ -202,7 +202,6 @@
           {
               cout << "required attribute=<nil>" << endl;
           }
  -        delete [] input;
           delete requiredAttributeResult;
   
           // Test empty required attribute
  @@ -226,9 +225,10 @@
           {
               cout << "empty required attribute=<nil>" << endl;
           }
  -        delete [] emptyInput;
           delete requiredAttributeResult;
   
  +/* Optional Attributes currently unsupported by WSDL2Ws
  + * Exact coding of this section may change depending on chosen implementation
           // Test optional attribute, with a value
           input = new char[25];
           strcpy (input, simpleName);
  @@ -295,6 +295,7 @@
               cout << "optional attribute, not present=<not present>" << endl;
           }
           delete optionalAttributeResult;
  +*/
   
           // Test array
           xsd__Name_Array arrayInput;
  
  
  
  1.4       +3 -2      ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_QNameClient.cpp
  
  Index: XSD_QNameClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_QNameClient.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XSD_QNameClient.cpp	12 Jul 2005 09:27:46 -0000	1.3
  +++ XSD_QNameClient.cpp	13 Jul 2005 15:19:09 -0000	1.4
  @@ -202,7 +202,6 @@
           {
               cout << "required attribute=<nil>" << endl;
           }
  -        delete [] input;
           delete requiredAttributeResult;
   
           // Test empty required attribute
  @@ -226,9 +225,10 @@
           {
               cout << "empty required attribute=<nil>" << endl;
           }
  -        delete [] emptyInput;
           delete requiredAttributeResult;
   
  +/* Optional Attributes currently unsupported by WSDL2Ws
  + * Exact coding of this section may change depending on chosen implementation
           // Test optional attribute, with a value
           input = new char[25];
           strcpy (input, simpleQName);
  @@ -295,6 +295,7 @@
               cout << "optional attribute, not present=<not present>" << endl;
           }
           delete optionalAttributeResult;
  +*/
   
           // Test array
           xsd__QName_Array arrayInput;
  
  
  
  1.4       +3 -2      ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_anyURIClient.cpp
  
  Index: XSD_anyURIClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_anyURIClient.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XSD_anyURIClient.cpp	12 Jul 2005 09:27:46 -0000	1.3
  +++ XSD_anyURIClient.cpp	13 Jul 2005 15:19:09 -0000	1.4
  @@ -202,7 +202,6 @@
           {
               cout << "required attribute=<nil>" << endl;
           }
  -        delete [] input;
           delete requiredAttributeResult;
   
           // Test empty required attribute
  @@ -226,9 +225,10 @@
           {
               cout << "empty required attribute=<nil>" << endl;
           }
  -        delete [] emptyInput;
           delete requiredAttributeResult;
   
  +/* Optional Attributes currently unsupported by WSDL2Ws
  + * Exact coding of this section may change depending on chosen implementation
           // Test optional attribute, with a value
           input = new char[25];
           strcpy (input, simpleanyURI);
  @@ -295,6 +295,7 @@
               cout << "optional attribute, not present=<not present>" << endl;
           }
           delete optionalAttributeResult;
  +*/
   
           // Test array
           xsd__anyURI_Array arrayInput;
  
  
  
  1.4       +3 -2      ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_languageClient.cpp
  
  Index: XSD_languageClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_languageClient.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XSD_languageClient.cpp	12 Jul 2005 09:27:46 -0000	1.3
  +++ XSD_languageClient.cpp	13 Jul 2005 15:19:09 -0000	1.4
  @@ -202,7 +202,6 @@
           {
               cout << "required attribute=<nil>" << endl;
           }
  -        delete [] input;
           delete requiredAttributeResult;
   
           // Test empty required attribute
  @@ -226,9 +225,10 @@
           {
               cout << "empty required attribute=<nil>" << endl;
           }
  -        delete [] emptyInput;
           delete requiredAttributeResult;
   
  +/* Optional Attributes currently unsupported by WSDL2Ws
  + * Exact coding of this section may change depending on chosen implementation
           // Test optional attribute, with a value
           input = new char[25];
           strcpy (input, simplelanguage);
  @@ -295,6 +295,7 @@
               cout << "optional attribute, not present=<not present>" << endl;
           }
           delete optionalAttributeResult;
  +*/
   
           // Test array
           xsd__language_Array arrayInput;
  
  
  
  1.4       +3 -2      ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_normalizedStringClient.cpp
  
  Index: XSD_normalizedStringClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_normalizedStringClient.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XSD_normalizedStringClient.cpp	12 Jul 2005 09:27:46 -0000	1.3
  +++ XSD_normalizedStringClient.cpp	13 Jul 2005 15:19:09 -0000	1.4
  @@ -202,7 +202,6 @@
           {
               cout << "required attribute=<nil>" << endl;
           }
  -        delete [] input;
           delete requiredAttributeResult;
   
           // Test empty required attribute
  @@ -226,9 +225,10 @@
           {
               cout << "empty required attribute=<nil>" << endl;
           }
  -        delete [] emptyInput;
           delete requiredAttributeResult;
   
  +/* Optional Attributes currently unsupported by WSDL2Ws
  + * Exact coding of this section may change depending on chosen implementation
           // Test optional attribute, with a value
           input = new char[25];
           strcpy (input, simplenormalizedString);
  @@ -295,6 +295,7 @@
               cout << "optional attribute, not present=<not present>" << endl;
           }
           delete optionalAttributeResult;
  +*/
   
           // Test array
           xsd__normalizedString_Array arrayInput;
  
  
  
  1.4       +3 -4      ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_stringClient.cpp
  
  Index: XSD_stringClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_stringClient.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XSD_stringClient.cpp	12 Jul 2005 09:27:46 -0000	1.3
  +++ XSD_stringClient.cpp	13 Jul 2005 15:19:09 -0000	1.4
  @@ -202,7 +202,6 @@
           {
               cout << "required attribute=<nil>" << endl;
           }
  -        delete [] input;
           delete requiredAttributeResult;
   
           // Test empty required attribute
  @@ -226,9 +225,10 @@
           {
               cout << "empty required attribute=<nil>" << endl;
           }
  -        delete [] emptyInput;
           delete requiredAttributeResult;
   
  +/* Optional Attributes currently unsupported by WSDL2Ws
  + * Exact coding of this section may change depending on chosen implementation
           // Test optional attribute, with a value
           input = new char[25];
           strcpy (input, simpleString);
  @@ -250,7 +250,6 @@
           {
               cout << "optional attribute, with data=<not present>" << endl;
           }
  -        delete [] input;
           delete optionalAttributeResult;
   
           // Test empty optional attribute
  @@ -273,7 +272,6 @@
           {
               cout << "empty optional attribute=<not present>" << endl;
           }
  -        delete [] emptyInput;
           delete optionalAttributeResult;
   
           // Test optional attribute, not present
  @@ -295,6 +293,7 @@
               cout << "optional attribute, not present=<not present>" << endl;
           }
           delete optionalAttributeResult;
  +*/
   
           // Test array
           xsd__string_Array arrayInput;
  
  
  
  1.4       +3 -2      ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_tokenClient.cpp
  
  Index: XSD_tokenClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_tokenClient.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XSD_tokenClient.cpp	12 Jul 2005 09:27:46 -0000	1.3
  +++ XSD_tokenClient.cpp	13 Jul 2005 15:19:09 -0000	1.4
  @@ -202,7 +202,6 @@
           {
               cout << "required attribute=<nil>" << endl;
           }
  -        delete [] input;
           delete requiredAttributeResult;
   
           // Test empty required attribute
  @@ -226,9 +225,10 @@
           {
               cout << "empty required attribute=<nil>" << endl;
           }
  -        delete [] emptyInput;
           delete requiredAttributeResult;
   
  +/* Optional Attributes currently unsupported by WSDL2Ws
  + * Exact coding of this section may change depending on chosen implementation
           // Test optional attribute, with a value
           input = new char[25];
           strcpy (input, simpletoken);
  @@ -295,6 +295,7 @@
               cout << "optional attribute, not present=<not present>" << endl;
           }
           delete optionalAttributeResult;
  +*/
   
           // Test array
           xsd__token_Array arrayInput;
  
  
  
  1.2       +0 -3      ws-axis/c/tests/auto_build/testcases/output/XSD_ENTITIES.expected
  
  Index: XSD_ENTITIES.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_ENTITIES.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_ENTITIES.expected	6 Jul 2005 16:43:03 -0000	1.1
  +++ XSD_ENTITIES.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -7,9 +7,6 @@
   nil element=<nil>
   required attribute=A simple test message!
   empty required attribute=<empty>
  -optional attribute, with data=A simple test message!
  -empty optional attribute=<empty>
  -optional attribute, not present=<not present>
   array of 2 elements
     element[0]=A simple test message!
     element[1]=A simple test message!
  
  
  
  1.2       +0 -33     ws-axis/c/tests/auto_build/testcases/output/XSD_ENTITIES_ServerResponse.expected
  
  Index: XSD_ENTITIES_ServerResponse.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_ENTITIES_ServerResponse.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_ENTITIES_ServerResponse.expected	6 Jul 2005 16:43:03 -0000	1.1
  +++ XSD_ENTITIES_ServerResponse.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -105,39 +105,6 @@
   
   ###
   <?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_ENTITIES.test.apache.org"><OptionalAttributeElement optionalAttribute="A simple test message!" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_ENTITIES.test.apache.org"><OptionalAttributeElement optionalAttribute="" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_ENTITIES.test.apache.org"><OptionalAttributeElement /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
   <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asArrayResponse xmlns="http://xsd_ENTITIES.test.apache.org"><arrayElement>A simple test message!</arrayElement><arrayElement>A simple test message!</arrayElement></asArrayResponse></soapenv:Body></soapenv:Envelope>
   0
   
  
  
  
  1.2       +0 -3      ws-axis/c/tests/auto_build/testcases/output/XSD_ENTITY.expected
  
  Index: XSD_ENTITY.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_ENTITY.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_ENTITY.expected	6 Jul 2005 16:43:03 -0000	1.1
  +++ XSD_ENTITY.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -7,9 +7,6 @@
   nil element=<nil>
   required attribute=A simple test message!
   empty required attribute=<empty>
  -optional attribute, with data=A simple test message!
  -empty optional attribute=<empty>
  -optional attribute, not present=<not present>
   array of 2 elements
     element[0]=A simple test message!
     element[1]=A simple test message!
  
  
  
  1.2       +0 -33     ws-axis/c/tests/auto_build/testcases/output/XSD_ENTITY_ServerResponse.expected
  
  Index: XSD_ENTITY_ServerResponse.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_ENTITY_ServerResponse.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_ENTITY_ServerResponse.expected	6 Jul 2005 16:43:03 -0000	1.1
  +++ XSD_ENTITY_ServerResponse.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -105,39 +105,6 @@
   
   ###
   <?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_ENTITY.test.apache.org"><OptionalAttributeElement optionalAttribute="A simple test message!" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_ENTITY.test.apache.org"><OptionalAttributeElement optionalAttribute="" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_ENTITY.test.apache.org"><OptionalAttributeElement /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
   <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asArrayResponse xmlns="http://xsd_ENTITY.test.apache.org"><arrayElement>A simple test message!</arrayElement><arrayElement>A simple test message!</arrayElement></asArrayResponse></soapenv:Body></soapenv:Envelope>
   0
   
  
  
  
  1.2       +0 -3      ws-axis/c/tests/auto_build/testcases/output/XSD_ID.expected
  
  Index: XSD_ID.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_ID.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_ID.expected	6 Jul 2005 16:43:03 -0000	1.1
  +++ XSD_ID.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -7,9 +7,6 @@
   nil element=<nil>
   required attribute=A simple test message!
   empty required attribute=<empty>
  -optional attribute, with data=A simple test message!
  -empty optional attribute=<empty>
  -optional attribute, not present=<not present>
   array of 2 elements
     element[0]=A simple test message!
     element[1]=A simple test message!
  
  
  
  1.2       +0 -3      ws-axis/c/tests/auto_build/testcases/output/XSD_IDREF.expected
  
  Index: XSD_IDREF.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_IDREF.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_IDREF.expected	6 Jul 2005 16:43:03 -0000	1.1
  +++ XSD_IDREF.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -7,9 +7,6 @@
   nil element=<nil>
   required attribute=A simple test message!
   empty required attribute=<empty>
  -optional attribute, with data=A simple test message!
  -empty optional attribute=<empty>
  -optional attribute, not present=<not present>
   array of 2 elements
     element[0]=A simple test message!
     element[1]=A simple test message!
  
  
  
  1.2       +0 -3      ws-axis/c/tests/auto_build/testcases/output/XSD_IDREFS.expected
  
  Index: XSD_IDREFS.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_IDREFS.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_IDREFS.expected	6 Jul 2005 16:43:03 -0000	1.1
  +++ XSD_IDREFS.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -7,9 +7,6 @@
   nil element=<nil>
   required attribute=A simple test message!
   empty required attribute=<empty>
  -optional attribute, with data=A simple test message!
  -empty optional attribute=<empty>
  -optional attribute, not present=<not present>
   array of 2 elements
     element[0]=A simple test message!
     element[1]=A simple test message!
  
  
  
  1.2       +0 -33     ws-axis/c/tests/auto_build/testcases/output/XSD_IDREFS_ServerResponse.expected
  
  Index: XSD_IDREFS_ServerResponse.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_IDREFS_ServerResponse.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_IDREFS_ServerResponse.expected	6 Jul 2005 16:43:03 -0000	1.1
  +++ XSD_IDREFS_ServerResponse.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -105,39 +105,6 @@
   
   ###
   <?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_IDREFS.test.apache.org"><OptionalAttributeElement optionalAttribute="A simple test message!" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_IDREFS.test.apache.org"><OptionalAttributeElement optionalAttribute="" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_IDREFS.test.apache.org"><OptionalAttributeElement /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
   <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asArrayResponse xmlns="http://xsd_IDREFS.test.apache.org"><arrayElement>A simple test message!</arrayElement><arrayElement>A simple test message!</arrayElement></asArrayResponse></soapenv:Body></soapenv:Envelope>
   0
   
  
  
  
  1.2       +0 -33     ws-axis/c/tests/auto_build/testcases/output/XSD_IDREF_ServerResponse.expected
  
  Index: XSD_IDREF_ServerResponse.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_IDREF_ServerResponse.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_IDREF_ServerResponse.expected	6 Jul 2005 16:43:03 -0000	1.1
  +++ XSD_IDREF_ServerResponse.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -105,39 +105,6 @@
   
   ###
   <?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_IDREF.test.apache.org"><OptionalAttributeElement optionalAttribute="A simple test message!" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_IDREF.test.apache.org"><OptionalAttributeElement optionalAttribute="" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_IDREF.test.apache.org"><OptionalAttributeElement /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
   <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asArrayResponse xmlns="http://xsd_IDREF.test.apache.org"><arrayElement>A simple test message!</arrayElement><arrayElement>A simple test message!</arrayElement></asArrayResponse></soapenv:Body></soapenv:Envelope>
   0
   
  
  
  
  1.2       +0 -33     ws-axis/c/tests/auto_build/testcases/output/XSD_ID_ServerResponse.expected
  
  Index: XSD_ID_ServerResponse.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_ID_ServerResponse.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_ID_ServerResponse.expected	6 Jul 2005 16:43:03 -0000	1.1
  +++ XSD_ID_ServerResponse.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -105,39 +105,6 @@
   
   ###
   <?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_ID.test.apache.org"><OptionalAttributeElement optionalAttribute="A simple test message!" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_ID.test.apache.org"><OptionalAttributeElement optionalAttribute="" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_ID.test.apache.org"><OptionalAttributeElement /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
   <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asArrayResponse xmlns="http://xsd_ID.test.apache.org"><arrayElement>A simple test message!</arrayElement><arrayElement>A simple test message!</arrayElement></asArrayResponse></soapenv:Body></soapenv:Envelope>
   0
   
  
  
  
  1.2       +0 -3      ws-axis/c/tests/auto_build/testcases/output/XSD_NCName.expected
  
  Index: XSD_NCName.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_NCName.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_NCName.expected	6 Jul 2005 15:02:46 -0000	1.1
  +++ XSD_NCName.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -7,9 +7,6 @@
   nil element=<nil>
   required attribute=A simple test message!
   empty required attribute=<empty>
  -optional attribute, with data=A simple test message!
  -empty optional attribute=<empty>
  -optional attribute, not present=<not present>
   array of 2 elements
     element[0]=A simple test message!
     element[1]=A simple test message!
  
  
  
  1.2       +0 -33     ws-axis/c/tests/auto_build/testcases/output/XSD_NCName_ServerResponse.expected
  
  Index: XSD_NCName_ServerResponse.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_NCName_ServerResponse.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_NCName_ServerResponse.expected	6 Jul 2005 15:02:46 -0000	1.1
  +++ XSD_NCName_ServerResponse.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -105,39 +105,6 @@
   
   ###
   <?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_NCName.test.apache.org"><OptionalAttributeElement optionalAttribute="A simple test message!" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_NCName.test.apache.org"><OptionalAttributeElement optionalAttribute="" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_NCName.test.apache.org"><OptionalAttributeElement /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
   <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asArrayResponse xmlns="http://xsd_NCName.test.apache.org"><arrayElement>A simple test message!</arrayElement><arrayElement>A simple test message!</arrayElement></asArrayResponse></soapenv:Body></soapenv:Envelope>
   0
   
  
  
  
  1.2       +0 -3      ws-axis/c/tests/auto_build/testcases/output/XSD_NMTOKEN.expected
  
  Index: XSD_NMTOKEN.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_NMTOKEN.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_NMTOKEN.expected	6 Jul 2005 16:43:03 -0000	1.1
  +++ XSD_NMTOKEN.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -7,9 +7,6 @@
   nil element=<nil>
   required attribute=A simple test message!
   empty required attribute=<empty>
  -optional attribute, with data=A simple test message!
  -empty optional attribute=<empty>
  -optional attribute, not present=<not present>
   array of 2 elements
     element[0]=A simple test message!
     element[1]=A simple test message!
  
  
  
  1.2       +0 -3      ws-axis/c/tests/auto_build/testcases/output/XSD_NMTOKENS.expected
  
  Index: XSD_NMTOKENS.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_NMTOKENS.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_NMTOKENS.expected	6 Jul 2005 16:43:03 -0000	1.1
  +++ XSD_NMTOKENS.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -7,9 +7,6 @@
   nil element=<nil>
   required attribute=A simple test message!
   empty required attribute=<empty>
  -optional attribute, with data=A simple test message!
  -empty optional attribute=<empty>
  -optional attribute, not present=<not present>
   array of 2 elements
     element[0]=A simple test message!
     element[1]=A simple test message!
  
  
  
  1.2       +0 -33     ws-axis/c/tests/auto_build/testcases/output/XSD_NMTOKENS_ServerResponse.expected
  
  Index: XSD_NMTOKENS_ServerResponse.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_NMTOKENS_ServerResponse.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_NMTOKENS_ServerResponse.expected	6 Jul 2005 16:43:03 -0000	1.1
  +++ XSD_NMTOKENS_ServerResponse.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -105,39 +105,6 @@
   
   ###
   <?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_token.test.apache.org"><OptionalAttributeElement optionalAttribute="A simple test message!" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_token.test.apache.org"><OptionalAttributeElement optionalAttribute="" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_token.test.apache.org"><OptionalAttributeElement /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
   <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asArrayResponse xmlns="http://xsd_token.test.apache.org"><arrayElement>A simple test message!</arrayElement><arrayElement>A simple test message!</arrayElement></asArrayResponse></soapenv:Body></soapenv:Envelope>
   0
   
  
  
  
  1.2       +0 -33     ws-axis/c/tests/auto_build/testcases/output/XSD_NMTOKEN_ServerResponse.expected
  
  Index: XSD_NMTOKEN_ServerResponse.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_NMTOKEN_ServerResponse.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_NMTOKEN_ServerResponse.expected	6 Jul 2005 16:43:03 -0000	1.1
  +++ XSD_NMTOKEN_ServerResponse.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -105,39 +105,6 @@
   
   ###
   <?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_NMTOKEN.test.apache.org"><OptionalAttributeElement optionalAttribute="A simple test message!" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_NMTOKEN.test.apache.org"><OptionalAttributeElement optionalAttribute="" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_NMTOKEN.test.apache.org"><OptionalAttributeElement /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
   <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asArrayResponse xmlns="http://xsd_NMTOKEN.test.apache.org"><arrayElement>A simple test message!</arrayElement><arrayElement>A simple test message!</arrayElement></asArrayResponse></soapenv:Body></soapenv:Envelope>
   0
   
  
  
  
  1.2       +0 -3      ws-axis/c/tests/auto_build/testcases/output/XSD_NOTATION.expected
  
  Index: XSD_NOTATION.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_NOTATION.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_NOTATION.expected	6 Jul 2005 18:00:32 -0000	1.1
  +++ XSD_NOTATION.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -10,9 +10,6 @@
   nil element=<nil>
   required attribute=A simple test message!
   empty required attribute=<empty>
  -optional attribute, with data=A simple test message!
  -empty optional attribute=<empty>
  -optional attribute, not present=<not present>
   array of 2 elements
     element[0]=A simple test message!
     element[1]=A simple test message!
  
  
  
  1.2       +0 -33     ws-axis/c/tests/auto_build/testcases/output/XSD_NOTATION_ServerResponse.expected
  
  Index: XSD_NOTATION_ServerResponse.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_NOTATION_ServerResponse.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_NOTATION_ServerResponse.expected	6 Jul 2005 18:00:32 -0000	1.1
  +++ XSD_NOTATION_ServerResponse.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -108,39 +108,6 @@
   
   ###
   <?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_NOTATION.test.apache.org"><OptionalAttributeElement optionalAttribute="A simple test message!" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_NOTATION.test.apache.org"><OptionalAttributeElement optionalAttribute="" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_NOTATION.test.apache.org"><OptionalAttributeElement /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
   <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asArrayResponse xmlns="http://xsd_NOTATION.test.apache.org"><arrayElement>A simple test message!</arrayElement><arrayElement>A simple test message!</arrayElement></asArrayResponse></soapenv:Body></soapenv:Envelope>
   0
   
  
  
  
  1.2       +0 -3      ws-axis/c/tests/auto_build/testcases/output/XSD_Name.expected
  
  Index: XSD_Name.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_Name.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_Name.expected	6 Jul 2005 15:02:46 -0000	1.1
  +++ XSD_Name.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -7,9 +7,6 @@
   nil element=<nil>
   required attribute=A simple test message!
   empty required attribute=<empty>
  -optional attribute, with data=A simple test message!
  -empty optional attribute=<empty>
  -optional attribute, not present=<not present>
   array of 2 elements
     element[0]=A simple test message!
     element[1]=A simple test message!
  
  
  
  1.2       +0 -33     ws-axis/c/tests/auto_build/testcases/output/XSD_Name_ServerResponse.expected
  
  Index: XSD_Name_ServerResponse.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_Name_ServerResponse.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_Name_ServerResponse.expected	6 Jul 2005 15:02:46 -0000	1.1
  +++ XSD_Name_ServerResponse.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -105,39 +105,6 @@
   
   ###
   <?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_Name.test.apache.org"><OptionalAttributeElement optionalAttribute="A simple test message!" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_Name.test.apache.org"><OptionalAttributeElement optionalAttribute="" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_Name.test.apache.org"><OptionalAttributeElement /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
   <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asArrayResponse xmlns="http://xsd_Name.test.apache.org"><arrayElement>A simple test message!</arrayElement><arrayElement>A simple test message!</arrayElement></asArrayResponse></soapenv:Body></soapenv:Envelope>
   0
   
  
  
  
  1.2       +0 -3      ws-axis/c/tests/auto_build/testcases/output/XSD_QName.expected
  
  Index: XSD_QName.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_QName.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_QName.expected	6 Jul 2005 18:00:32 -0000	1.1
  +++ XSD_QName.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -10,9 +10,6 @@
   nil element=<nil>
   required attribute=A simple test message!
   empty required attribute=<empty>
  -optional attribute, with data=A simple test message!
  -empty optional attribute=<empty>
  -optional attribute, not present=<not present>
   array of 2 elements
     element[0]=A simple test message!
     element[1]=A simple test message!
  
  
  
  1.2       +0 -33     ws-axis/c/tests/auto_build/testcases/output/XSD_QName_ServerResponse.expected
  
  Index: XSD_QName_ServerResponse.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_QName_ServerResponse.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_QName_ServerResponse.expected	6 Jul 2005 18:00:32 -0000	1.1
  +++ XSD_QName_ServerResponse.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -108,39 +108,6 @@
   
   ###
   <?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_QName.test.apache.org"><OptionalAttributeElement optionalAttribute="A simple test message!" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_QName.test.apache.org"><OptionalAttributeElement optionalAttribute="" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_QName.test.apache.org"><OptionalAttributeElement /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
   <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asArrayResponse xmlns="http://xsd_QName.test.apache.org"><arrayElement>A simple test message!</arrayElement><arrayElement>A simple test message!</arrayElement></asArrayResponse></soapenv:Body></soapenv:Envelope>
   0
   
  
  
  
  1.2       +0 -3      ws-axis/c/tests/auto_build/testcases/output/XSD_anyURI.expected
  
  Index: XSD_anyURI.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_anyURI.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_anyURI.expected	6 Jul 2005 18:00:32 -0000	1.1
  +++ XSD_anyURI.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -10,9 +10,6 @@
   nil element=<nil>
   required attribute=A simple test message!
   empty required attribute=<empty>
  -optional attribute, with data=A simple test message!
  -empty optional attribute=<empty>
  -optional attribute, not present=<not present>
   array of 2 elements
     element[0]=A simple test message!
     element[1]=A simple test message!
  
  
  
  1.2       +0 -33     ws-axis/c/tests/auto_build/testcases/output/XSD_anyURI_ServerResponse.expected
  
  Index: XSD_anyURI_ServerResponse.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_anyURI_ServerResponse.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_anyURI_ServerResponse.expected	6 Jul 2005 18:00:32 -0000	1.1
  +++ XSD_anyURI_ServerResponse.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -108,39 +108,6 @@
   
   ###
   <?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_anyURI.test.apache.org"><OptionalAttributeElement optionalAttribute="A simple test message!" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_anyURI.test.apache.org"><OptionalAttributeElement optionalAttribute="" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_anyURI.test.apache.org"><OptionalAttributeElement /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
   <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asArrayResponse xmlns="http://xsd_anyURI.test.apache.org"><arrayElement>A simple test message!</arrayElement><arrayElement>A simple test message!</arrayElement></asArrayResponse></soapenv:Body></soapenv:Envelope>
   0
   
  
  
  
  1.2       +0 -3      ws-axis/c/tests/auto_build/testcases/output/XSD_language.expected
  
  Index: XSD_language.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_language.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_language.expected	6 Jul 2005 15:02:46 -0000	1.1
  +++ XSD_language.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -7,9 +7,6 @@
   nil element=<nil>
   required attribute=A simple test message!
   empty required attribute=<empty>
  -optional attribute, with data=A simple test message!
  -empty optional attribute=<empty>
  -optional attribute, not present=<not present>
   array of 2 elements
     element[0]=A simple test message!
     element[1]=A simple test message!
  
  
  
  1.2       +0 -33     ws-axis/c/tests/auto_build/testcases/output/XSD_language_ServerResponse.expected
  
  Index: XSD_language_ServerResponse.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_language_ServerResponse.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_language_ServerResponse.expected	6 Jul 2005 15:02:46 -0000	1.1
  +++ XSD_language_ServerResponse.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -105,39 +105,6 @@
   
   ###
   <?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_language.test.apache.org"><OptionalAttributeElement optionalAttribute="A simple test message!" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_language.test.apache.org"><OptionalAttributeElement optionalAttribute="" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_language.test.apache.org"><OptionalAttributeElement /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
   <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asArrayResponse xmlns="http://xsd_language.test.apache.org"><arrayElement>A simple test message!</arrayElement><arrayElement>A simple test message!</arrayElement></asArrayResponse></soapenv:Body></soapenv:Envelope>
   0
   
  
  
  
  1.2       +0 -3      ws-axis/c/tests/auto_build/testcases/output/XSD_normalizedString.expected
  
  Index: XSD_normalizedString.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_normalizedString.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_normalizedString.expected	6 Jul 2005 15:02:46 -0000	1.1
  +++ XSD_normalizedString.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -7,9 +7,6 @@
   nil element=<nil>
   required attribute=A simple test message!
   empty required attribute=<empty>
  -optional attribute, with data=A simple test message!
  -empty optional attribute=<empty>
  -optional attribute, not present=<not present>
   array of 2 elements
     element[0]=A simple test message!
     element[1]=A simple test message!
  
  
  
  1.2       +0 -33     ws-axis/c/tests/auto_build/testcases/output/XSD_normalizedString_ServerResponse.expected
  
  Index: XSD_normalizedString_ServerResponse.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_normalizedString_ServerResponse.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_normalizedString_ServerResponse.expected	6 Jul 2005 15:02:46 -0000	1.1
  +++ XSD_normalizedString_ServerResponse.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -105,39 +105,6 @@
   
   ###
   <?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_normalizedString.test.apache.org"><OptionalAttributeElement optionalAttribute="A simple test message!" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_normalizedString.test.apache.org"><OptionalAttributeElement optionalAttribute="" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_normalizedString.test.apache.org"><OptionalAttributeElement /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
   <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asArrayResponse xmlns="http://xsd_normalizedString.test.apache.org"><arrayElement>A simple test message!</arrayElement><arrayElement>A simple test message!</arrayElement></asArrayResponse></soapenv:Body></soapenv:Envelope>
   0
   
  
  
  
  1.2       +0 -3      ws-axis/c/tests/auto_build/testcases/output/XSD_string.expected
  
  Index: XSD_string.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_string.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_string.expected	6 Jul 2005 10:26:39 -0000	1.1
  +++ XSD_string.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -10,9 +10,6 @@
   nil element=<nil>
   required attribute=A simple test message!
   empty required attribute=<empty>
  -optional attribute, with data=A simple test message!
  -empty optional attribute=<empty>
  -optional attribute, not present=<not present>
   array of 2 elements
     element[0]=A simple test message!
     element[1]=A simple test message!
  
  
  
  1.2       +0 -33     ws-axis/c/tests/auto_build/testcases/output/XSD_string_ServerResponse.expected
  
  Index: XSD_string_ServerResponse.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_string_ServerResponse.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_string_ServerResponse.expected	6 Jul 2005 10:26:39 -0000	1.1
  +++ XSD_string_ServerResponse.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -108,39 +108,6 @@
   
   ###
   <?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_string.test.apache.org"><OptionalAttributeElement optionalAttribute="A simple test message!" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_string.test.apache.org"><OptionalAttributeElement optionalAttribute="" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_string.test.apache.org"><OptionalAttributeElement /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
   <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asArrayResponse xmlns="http://xsd_string.test.apache.org"><arrayElement>A simple test message!</arrayElement><arrayElement>A simple test message!</arrayElement></asArrayResponse></soapenv:Body></soapenv:Envelope>
   0
   
  
  
  
  1.2       +0 -3      ws-axis/c/tests/auto_build/testcases/output/XSD_token.expected
  
  Index: XSD_token.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_token.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_token.expected	6 Jul 2005 15:02:46 -0000	1.1
  +++ XSD_token.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -7,9 +7,6 @@
   nil element=<nil>
   required attribute=A simple test message!
   empty required attribute=<empty>
  -optional attribute, with data=A simple test message!
  -empty optional attribute=<empty>
  -optional attribute, not present=<not present>
   array of 2 elements
     element[0]=A simple test message!
     element[1]=A simple test message!
  
  
  
  1.2       +0 -33     ws-axis/c/tests/auto_build/testcases/output/XSD_token_ServerResponse.expected
  
  Index: XSD_token_ServerResponse.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_token_ServerResponse.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_token_ServerResponse.expected	6 Jul 2005 15:02:46 -0000	1.1
  +++ XSD_token_ServerResponse.expected	13 Jul 2005 15:19:10 -0000	1.2
  @@ -105,39 +105,6 @@
   
   ###
   <?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_token.test.apache.org"><OptionalAttributeElement optionalAttribute="A simple test message!" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_token.test.apache.org"><OptionalAttributeElement optionalAttribute="" /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asOptionalAttributeResponse xmlns="http://xsd_token.test.apache.org"><OptionalAttributeElement /></asOptionalAttributeResponse></soapenv:Body></soapenv:Envelope>
  -0
  -
  -HTTP/1.1 200 OK
  -Server: WebSphere Application Server/5.1
  -Content-Type: text/xml; charset=utf-8
  -Content-Language: en-GB
  -Transfer-Encoding: chunked
  -
  -###
  -<?xml version="1.0" encoding="utf-8"?>
   <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asArrayResponse xmlns="http://xsd_token.test.apache.org"><arrayElement>A simple test message!</arrayElement><arrayElement>A simple test message!</arrayElement></asArrayResponse></soapenv:Body></soapenv:Envelope>
   0