<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=ASP.Net%2FXML%2FSchema</id>
		<title>ASP.Net/XML/Schema - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=ASP.Net%2FXML%2FSchema"/>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=ASP.Net/XML/Schema&amp;action=history"/>
		<updated>2026-04-30T00:34:31Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://nfex.ru/index.php?title=ASP.Net/XML/Schema&amp;diff=1870&amp;oldid=prev</id>
		<title> в 15:30, 26 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=ASP.Net/XML/Schema&amp;diff=1870&amp;oldid=prev"/>
				<updated>2010-05-26T15:30:47Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 15:30, 26 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
			</entry>

	<entry>
		<id>http://nfex.ru/index.php?title=ASP.Net/XML/Schema&amp;diff=1871&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=ASP.Net/XML/Schema&amp;diff=1871&amp;oldid=prev"/>
				<updated>2010-05-26T11:51:42Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Create XML Schema==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;%@ Page Language=&amp;quot;C#&amp;quot;%&amp;gt;&lt;br /&gt;
&amp;lt;%@ Import Namespace=&amp;quot;System.IO&amp;quot; %&amp;gt;&lt;br /&gt;
&amp;lt;%@ Import Namespace=&amp;quot;System.Xml&amp;quot; %&amp;gt;&lt;br /&gt;
&amp;lt;%@ Import Namespace=&amp;quot;System.Xml.Schema&amp;quot; %&amp;gt;&lt;br /&gt;
&amp;lt;script runat=&amp;quot;server&amp;quot;&amp;gt;    &lt;br /&gt;
    private StringBuilder stringBuilder = new StringBuilder();&lt;br /&gt;
    void Page_Load(object sender, EventArgs e)&lt;br /&gt;
    {        &lt;br /&gt;
        string ns = &amp;quot;http://www.w3.org/2001/XMLSchema&amp;quot;;&lt;br /&gt;
        string xsdPath = MapPath(&amp;quot;NewAuthors.xsd&amp;quot;);        &lt;br /&gt;
        XmlSchema schema = new XmlSchema();                     &lt;br /&gt;
        &lt;br /&gt;
        XmlSchemaElement authorID = new XmlSchemaElement();&lt;br /&gt;
        authorID.Name = &amp;quot;authorID&amp;quot;;&lt;br /&gt;
        authorID.SchemaTypeName = new XmlQualifiedName(&amp;quot;string&amp;quot;, ns );&lt;br /&gt;
        &lt;br /&gt;
        XmlSchemaElement authorLastName = new XmlSchemaElement();&lt;br /&gt;
        authorLastName.Name = &amp;quot;lastName&amp;quot;;&lt;br /&gt;
        authorLastName.SchemaTypeName = new XmlQualifiedName(&amp;quot;string&amp;quot;, ns);&lt;br /&gt;
        &lt;br /&gt;
        XmlSchemaElement authorFirstName = new XmlSchemaElement();&lt;br /&gt;
        authorFirstName.Name = &amp;quot;firstName&amp;quot;;&lt;br /&gt;
        authorFirstName.SchemaTypeName = new XmlQualifiedName(&amp;quot;string&amp;quot;, ns);&lt;br /&gt;
        &lt;br /&gt;
        XmlSchemaElement zip = new XmlSchemaElement();&lt;br /&gt;
        zip.Name = &amp;quot;zip&amp;quot;;&lt;br /&gt;
        zip.SchemaTypeName = new XmlQualifiedName(&amp;quot;unsignedInt&amp;quot;, ns);&lt;br /&gt;
        &lt;br /&gt;
        XmlSchemaElement contract = new XmlSchemaElement();&lt;br /&gt;
        contract.Name = &amp;quot;contract&amp;quot;;&lt;br /&gt;
        contract.SchemaTypeName = new XmlQualifiedName(&amp;quot;boolean&amp;quot;, ns);       &lt;br /&gt;
              &lt;br /&gt;
        XmlSchemaElement authorElement = new XmlSchemaElement();&lt;br /&gt;
        authorElement.Name = &amp;quot;author&amp;quot;;        &lt;br /&gt;
                &lt;br /&gt;
        // Create an anonymous complex type for the author element&lt;br /&gt;
        XmlSchemaComplexType authorType = new XmlSchemaComplexType();&lt;br /&gt;
        XmlSchemaSequence authorSeq = new XmlSchemaSequence();&lt;br /&gt;
        //Add all the child elements to the sequence&lt;br /&gt;
        authorSeq.Items.Add(authorID);&lt;br /&gt;
        authorSeq.Items.Add(authorLastName);&lt;br /&gt;
        authorSeq.Items.Add(authorFirstName);&lt;br /&gt;
        authorSeq.Items.Add(zip);&lt;br /&gt;
        authorSeq.Items.Add(contract);&lt;br /&gt;
        authorType.Particle = authorSeq;     &lt;br /&gt;
           &lt;br /&gt;
        //Set the SchemaType of authors element to the complex type&lt;br /&gt;
        authorElement.SchemaType = authorType;               &lt;br /&gt;
        //Add the root authors element to the schema&lt;br /&gt;
        schema.Items.Add(authorElement);&lt;br /&gt;
        //Compile the file to check for validation errors&lt;br /&gt;
        schema.rupile(new ValidationEventHandler(ValidationEventHandler));                    &lt;br /&gt;
        FileStream stream = new FileStream(xsdPath, FileMode.Create);&lt;br /&gt;
        //Write the file&lt;br /&gt;
        schema.Write(stream);&lt;br /&gt;
        stream.Close();&lt;br /&gt;
        if (stringBuilder.ToString() == String.Empty)&lt;br /&gt;
            Response.Write(&amp;quot;File written successfully&amp;quot;);&lt;br /&gt;
        else&lt;br /&gt;
            Response.Write(&amp;quot;Schema Creation Failed. &amp;lt;br&amp;gt;&amp;quot; + stringBuilder.ToString());        &lt;br /&gt;
    }   &lt;br /&gt;
    void ValidationEventHandler(object sender, ValidationEventArgs args)&lt;br /&gt;
    {        &lt;br /&gt;
        stringBuilder.Append(&amp;quot;Validation error: &amp;quot; + args.Message + &amp;quot;&amp;lt;br&amp;gt;&amp;quot;);                &lt;br /&gt;
    }    &lt;br /&gt;
  &lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot; &amp;gt;&lt;br /&gt;
&amp;lt;head runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt;Writing XSD Schema&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
    &amp;lt;form id=&amp;quot;form1&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;div&amp;gt;                &lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/form&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Read XML Schema and compile==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;%@ Page Language=&amp;quot;C#&amp;quot;%&amp;gt;&lt;br /&gt;
&amp;lt;%@ Import Namespace=&amp;quot;System.IO&amp;quot; %&amp;gt;&lt;br /&gt;
&amp;lt;%@ Import Namespace=&amp;quot;System.Reflection&amp;quot; %&amp;gt;&lt;br /&gt;
&amp;lt;%@ Import Namespace=&amp;quot;System.Xml&amp;quot; %&amp;gt;&lt;br /&gt;
&amp;lt;%@ Import Namespace=&amp;quot;System.Xml.Schema&amp;quot; %&amp;gt;&lt;br /&gt;
&amp;lt;script runat=&amp;quot;server&amp;quot;&amp;gt;    &lt;br /&gt;
    private StringBuilder stringBuilder = new StringBuilder();&lt;br /&gt;
    void Page_Load(object sender, EventArgs e)&lt;br /&gt;
    {        &lt;br /&gt;
        string xsdPath = MapPath(&amp;quot;Authors.xsd&amp;quot;);        &lt;br /&gt;
        XmlSchema schema = null;&lt;br /&gt;
        FileStream stream = new FileStream(xsdPath, FileMode.Open);&lt;br /&gt;
        schema = XmlSchema.Read(stream, new ValidationEventHandler(ValidationEventHandler));&lt;br /&gt;
        stream.Close();        &lt;br /&gt;
        schema.rupile(new ValidationEventHandler(ValidationEventHandler));        &lt;br /&gt;
        if (schema.IsCompiled)&lt;br /&gt;
            DisplaySchemaObjects(schema);        &lt;br /&gt;
        else&lt;br /&gt;
            Response.Write(&amp;quot;Schema Reading Failed. &amp;lt;br&amp;gt;&amp;quot; + stringBuilder.ToString());&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    void DisplaySchemaObjects(XmlSchema schema)&lt;br /&gt;
    {&lt;br /&gt;
        foreach (XmlSchemaElement elem in schema.Elements.Values)&lt;br /&gt;
        {            &lt;br /&gt;
            if (elem.ElementSchemaType is XmlSchemaComplexType)&lt;br /&gt;
            {                &lt;br /&gt;
                Response.Write(&amp;quot;Complex Element: &amp;quot; + elem.Name + &amp;quot;&amp;lt;br&amp;gt;&amp;quot;);&lt;br /&gt;
                XmlSchemaComplexType ct = (XmlSchemaComplexType)elem.ElementSchemaType;                                &lt;br /&gt;
                //Process the XmlSchemaComplexType                &lt;br /&gt;
            }&lt;br /&gt;
        }             &lt;br /&gt;
    }&lt;br /&gt;
    void ValidationEventHandler(object sender, ValidationEventArgs args)&lt;br /&gt;
    {        &lt;br /&gt;
        stringBuilder.Append(&amp;quot;Validation error: &amp;quot; + args.Message + &amp;quot;&amp;lt;br&amp;gt;&amp;quot;);                &lt;br /&gt;
    }    &lt;br /&gt;
  &lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot; &amp;gt;&lt;br /&gt;
&amp;lt;head runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt;Reading XSD Schema&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
    &amp;lt;form id=&amp;quot;form1&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;div&amp;gt;                &lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/form&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;%-- Authors.xsd&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;xs:schema attributeFormDefault=&amp;quot;unqualified&amp;quot; elementFormDefault=&amp;quot;qualified&amp;quot; xmlns:xs=&amp;quot;http://www.w3.org/2001/XMLSchema&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;xs:element name=&amp;quot;authors&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;xs:complexType&amp;gt;&lt;br /&gt;
      &amp;lt;xs:sequence&amp;gt;&lt;br /&gt;
        &amp;lt;xs:element maxOccurs=&amp;quot;unbounded&amp;quot; name=&amp;quot;author&amp;quot;&amp;gt;&lt;br /&gt;
          &amp;lt;xs:complexType&amp;gt;&lt;br /&gt;
            &amp;lt;xs:sequence&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name=&amp;quot;authorID&amp;quot; type=&amp;quot;xs:string&amp;quot; /&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name=&amp;quot;lastName&amp;quot; type=&amp;quot;xs:string&amp;quot; /&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name=&amp;quot;firstName&amp;quot; type=&amp;quot;xs:string&amp;quot; /&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name=&amp;quot;phone&amp;quot; type=&amp;quot;xs:string&amp;quot; /&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name=&amp;quot;address&amp;quot; type=&amp;quot;xs:string&amp;quot; /&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name=&amp;quot;city&amp;quot; type=&amp;quot;xs:string&amp;quot; /&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name=&amp;quot;state&amp;quot; type=&amp;quot;xs:string&amp;quot; /&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name=&amp;quot;zip&amp;quot; type=&amp;quot;xs:unsignedInt&amp;quot; /&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name=&amp;quot;contract&amp;quot; type=&amp;quot;xs:boolean&amp;quot; /&amp;gt;&lt;br /&gt;
            &amp;lt;/xs:sequence&amp;gt;&lt;br /&gt;
          &amp;lt;/xs:complexType&amp;gt;&lt;br /&gt;
        &amp;lt;/xs:element&amp;gt;&lt;br /&gt;
      &amp;lt;/xs:sequence&amp;gt;&lt;br /&gt;
    &amp;lt;/xs:complexType&amp;gt;&lt;br /&gt;
  &amp;lt;/xs:element&amp;gt;&lt;br /&gt;
&amp;lt;/xs:schema&amp;gt;&lt;br /&gt;
--%&amp;gt;&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Validate XML with inline Schema==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;%@ Page Language=&amp;quot;C#&amp;quot;%&amp;gt;&lt;br /&gt;
&amp;lt;%@ Import Namespace=&amp;quot;System.Xml&amp;quot; %&amp;gt;&lt;br /&gt;
&amp;lt;%@ Import Namespace=&amp;quot;System.Xml.Schema&amp;quot; %&amp;gt;&lt;br /&gt;
&amp;lt;script runat=&amp;quot;server&amp;quot;&amp;gt;    &lt;br /&gt;
    private StringBuilder stringBuilder = new StringBuilder();&lt;br /&gt;
    void Page_Load(object sender, EventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
        string xmlPath = MapPath(&amp;quot;AuthorsWithInlineSchema.xml&amp;quot;);            &lt;br /&gt;
        XmlReader reader = null;        &lt;br /&gt;
        XmlReaderSettings settings = new XmlReaderSettings();&lt;br /&gt;
        settings.ValidationType = ValidationType.Schema;                &lt;br /&gt;
        settings.ValidationEventHandler += new ValidationEventHandler(this.ValidationEventHandler);&lt;br /&gt;
        //settings.ValidationFlags &amp;amp;= ~XmlSchemaValidationFlags.IgnoreInlineSchema;&lt;br /&gt;
        //settings.ValidationFlags &amp;amp;= ~XmlSchemaValidationFlags.IgnoreValidationWarnings;        &lt;br /&gt;
        settings.ValidationFlags &amp;amp;= XmlSchemaValidationFlags.ProcessInlineSchema;&lt;br /&gt;
        settings.ValidationFlags &amp;amp;= XmlSchemaValidationFlags.ReportValidationWarnings;        &lt;br /&gt;
        reader = XmlReader.Create(xmlPath, settings);&lt;br /&gt;
        while (reader.Read()) &lt;br /&gt;
        {            &lt;br /&gt;
        }&lt;br /&gt;
        if (stringBuilder.ToString() == String.Empty)&lt;br /&gt;
            Response.Write(&amp;quot;Validation completed successfully.&amp;quot;);&lt;br /&gt;
        else&lt;br /&gt;
            Response.Write(&amp;quot;Validation Failed. &amp;lt;br&amp;gt;&amp;quot; + stringBuilder.ToString());&lt;br /&gt;
    }&lt;br /&gt;
    void ValidationEventHandler(object sender, ValidationEventArgs args)&lt;br /&gt;
    {&lt;br /&gt;
        if (args.Severity == XmlSeverityType.Error)&lt;br /&gt;
        {&lt;br /&gt;
            stringBuilder.Append(&amp;quot;Validation error: &amp;quot; + args.Message + &amp;quot;&amp;lt;br&amp;gt;&amp;quot;);                &lt;br /&gt;
        }       &lt;br /&gt;
    }    &lt;br /&gt;
  &lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot; &amp;gt;&lt;br /&gt;
&amp;lt;head runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt;Inline XSD Schema Validation&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
    &amp;lt;form id=&amp;quot;form1&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;div&amp;gt;                &lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;/form&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;%--&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;root xmlns:xs=&amp;quot;http://www.w3.org/2001/XMLSchema&amp;quot; xmlns:x=&amp;quot;urn:authors&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;!-- Start of Schema --&amp;gt;&lt;br /&gt;
  &amp;lt;xs:schema targetNamespace=&amp;quot;urn:authors&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;xs:element name=&amp;quot;authors&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;xs:complexType&amp;gt;&lt;br /&gt;
        &amp;lt;xs:sequence&amp;gt;&lt;br /&gt;
          &amp;lt;xs:element maxOccurs=&amp;quot;unbounded&amp;quot; name=&amp;quot;author&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;xs:complexType&amp;gt;&lt;br /&gt;
              &amp;lt;xs:sequence&amp;gt;&lt;br /&gt;
                &amp;lt;xs:element name=&amp;quot;authorID&amp;quot; type=&amp;quot;xs:string&amp;quot; /&amp;gt;&lt;br /&gt;
                &amp;lt;xs:element name=&amp;quot;lastName&amp;quot; type=&amp;quot;xs:string&amp;quot; /&amp;gt;&lt;br /&gt;
                &amp;lt;xs:element name=&amp;quot;firstName&amp;quot; type=&amp;quot;xs:string&amp;quot; /&amp;gt;&lt;br /&gt;
                &amp;lt;xs:element name=&amp;quot;phone&amp;quot; type=&amp;quot;xs:string&amp;quot; /&amp;gt;&lt;br /&gt;
                &amp;lt;xs:element name=&amp;quot;address&amp;quot; type=&amp;quot;xs:string&amp;quot; /&amp;gt;&lt;br /&gt;
                &amp;lt;xs:element name=&amp;quot;city&amp;quot; type=&amp;quot;xs:string&amp;quot; /&amp;gt;&lt;br /&gt;
                &amp;lt;xs:element name=&amp;quot;state&amp;quot; type=&amp;quot;xs:string&amp;quot; /&amp;gt;&lt;br /&gt;
                &amp;lt;xs:element name=&amp;quot;zip&amp;quot; type=&amp;quot;xs:unsignedInt&amp;quot; /&amp;gt;&lt;br /&gt;
                &amp;lt;xs:element name=&amp;quot;contract&amp;quot; type=&amp;quot;xs:boolean&amp;quot; /&amp;gt;&lt;br /&gt;
              &amp;lt;/xs:sequence&amp;gt;&lt;br /&gt;
            &amp;lt;/xs:complexType&amp;gt;&lt;br /&gt;
          &amp;lt;/xs:element&amp;gt;&lt;br /&gt;
        &amp;lt;/xs:sequence&amp;gt;&lt;br /&gt;
      &amp;lt;/xs:complexType&amp;gt;&lt;br /&gt;
    &amp;lt;/xs:element&amp;gt;&lt;br /&gt;
  &amp;lt;/xs:schema&amp;gt;&lt;br /&gt;
  &amp;lt;!-- End of Schema --&amp;gt;&lt;br /&gt;
  &amp;lt;x:authors&amp;gt;&lt;br /&gt;
      &amp;lt;author&amp;gt;&lt;br /&gt;
        &amp;lt;authorID&amp;gt;000-00-0001&amp;lt;/authorID&amp;gt;&lt;br /&gt;
        &amp;lt;lastName&amp;gt;Nancy&amp;lt;/lastName&amp;gt;&lt;br /&gt;
        &amp;lt;firstName&amp;gt;Lee&amp;lt;/firstName&amp;gt;&lt;br /&gt;
        &amp;lt;phone&amp;gt;999 999-9999&amp;lt;/phone&amp;gt;&lt;br /&gt;
        &amp;lt;address&amp;gt;9999 York St.&amp;lt;/address&amp;gt;&lt;br /&gt;
        &amp;lt;city&amp;gt;Regina&amp;lt;/city&amp;gt;&lt;br /&gt;
        &amp;lt;state&amp;gt;LA&amp;lt;/state&amp;gt;&lt;br /&gt;
        &amp;lt;zip&amp;gt;99999&amp;lt;/zip&amp;gt;&lt;br /&gt;
        &amp;lt;contract&amp;gt;true&amp;lt;/contract&amp;gt;&lt;br /&gt;
      &amp;lt;/author&amp;gt;&lt;br /&gt;
      &amp;lt;author&amp;gt;&lt;br /&gt;
        &amp;lt;authorID&amp;gt;000-00-0002&amp;lt;/authorID&amp;gt;&lt;br /&gt;
        &amp;lt;lastName&amp;gt;First&amp;lt;/lastName&amp;gt;&lt;br /&gt;
        &amp;lt;firstName&amp;gt;Last&amp;lt;/firstName&amp;gt;&lt;br /&gt;
        &amp;lt;phone&amp;gt;415 986-7020&amp;lt;/phone&amp;gt;&lt;br /&gt;
        &amp;lt;address&amp;gt;No Name St.&amp;lt;/address&amp;gt;&lt;br /&gt;
        &amp;lt;city&amp;gt;Vancouver&amp;lt;/city&amp;gt;&lt;br /&gt;
        &amp;lt;state&amp;gt;BC&amp;lt;/state&amp;gt;&lt;br /&gt;
        &amp;lt;zip&amp;gt;88888&amp;lt;/zip&amp;gt;&lt;br /&gt;
        &amp;lt;contract&amp;gt;true&amp;lt;/contract&amp;gt;&lt;br /&gt;
      &amp;lt;/author&amp;gt; &lt;br /&gt;
  &amp;lt;/x:authors&amp;gt;&lt;br /&gt;
&amp;lt;/root&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--%&amp;gt;&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>