home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / XML Utilities / XML Writer 2.12 / XML writer.exe / file0019.bin < prev    next >
Encoding:
Extensible Markup Language  |  2003-04-14  |  1.0 KB  |  30 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--What you can do with this file:
  4.     1. Check that it validates against the XSD Schema, Passport.xsd, assigned to it.
  5.        To validate, select 'Validate' from the Tools menu, or press F7.-->
  6.  
  7. <!--XSD Schema declaration.
  8.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" indicates to the
  9.     XML parser that the following attribute, xsi:noNamespaceSchemaLocation,
  10.     comes from the http://www.w3.org/2001/XMLSchema-instance namespace.-->
  11. <passport_details
  12.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  13.     xsi:noNamespaceSchemaLocation="Passport.xsd">
  14.     <birth_cert></birth_cert>
  15.     <last_name>Citizen</last_name>
  16.     <first_name>Jo</first_name>
  17.     <address>
  18.         <street>X Street</street>
  19.         <city>X City</city>
  20.         <state>X State</state>
  21.         <postal_code>XXXX</postal_code>
  22.         <country>X Country</country>
  23.     <email>jo@citizen.com</email>
  24.     </address>
  25. </passport_details>
  26.  
  27. <!--This file was created using XMLwriter v2.0 Beta 2.
  28.     Copyright Wattle Software 2002. All rights reserved.
  29.     http://XMLwriter.net/-->
  30.