<?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/"
    xmlns:app="http://www.extreme.indiana.edu/AppFactoryWebService/"
    version="0.9">

<!-- For each comp, execution environment -->
<element name="executionEnv">
 <complexType>
  <all>
   <element name="hostName" type="string" minOccurs="1" maxOccurs="unbounded"/>
   <element name="creationProto" type="string" minOccurs="1" maxOccurs="unbounded"/>
   <element ref="nameValuePair" minOccurs="0" maxOccurs="unbounded"/>
  </all>
 </complexType> 
</element>

<!-- For each execEnv, name value pair to store other execution env info -->
<element name="nameValuePair">
 <complexType>
  <all>
   <element name="name" type="string" minOccurs="1" maxOccurs="1"/>
   <element name="value" type="string" minOccurs="1" maxOccurs="1"/>
  </all>
 </complexType> 
</element>

</schema>