<?xml version="1.0" encoding="UTF-8"?>

<!-- static info abt the application -->   
<schema 
  xmlns="http://www.w3.org/2000/10/XMLSchema"
    targetNamespace="http://www.extreme.indiana.edu/AppFactoryWebService/"
    version="0.9">

<element name="applicationInstance"> 
 <complexType>
  <all>
   <!-- Application Coordinator host-->
   <element name="appCordinatorHost"  type="string" minOccurs="1" maxOccurs="1"/>
   <!-- List of hosts for components -->
   <element ref="compInfo"  minOccurs="0" maxOccurs="unbounded"/>
  </all>
 <attribute name="appName" type="string" use="required"/>
 </complexType> 
</element>

<element name="compInfo">
 <complexType>
   <all>
  <element name="compName" type="string" minOccurs="1" maxOccurs="1"/>
  <element name="hostName" type="string" minOccurs="1" maxOccurs="1"/>
  </all>
 </complexType>
</element> 

</schema>