3.1.4.2.2.2 GetFormCollectionResponse

This structure holds a list of Form elements, each of which describes a single form. This structure is defined as follows:

 <s:element name="GetFormCollectionResponse">
   <s:complexType>
     <s:sequence>
       <s:element name="GetFormCollectionResult">
         <s:complexType>
           <s:sequence>
             <s:element name="Forms">
               <s:complexType>              
                 <s:sequence>
                   <s:element name="Form" minOccurs="0"
                               maxOccurs="unbounded">
                     <s:complexType>
                       <s:attribute name="Type" use="required">
                         <s:simpleType>
                           <s:restriction base="s:string">
                             <s:enumeration value="DisplayForm" />
                             <s:enumeration value="EditForm" />
                             <s:enumeration value="NewForm" />
                             <s:enumeration value="NewFormDialog" />
                             <s:enumeration value="SolutionForm" />
                             <s:enumeration value="" />
                           </s:restriction>
                         </s:simpleType>
                       </s:attribute>
                       <s:attribute name="Url" type="s:string"
                               use="required"/>
                     </s:complexType>
                   </s:element>
                 </s:sequence>
               </s:complexType>
             </s:element>
           </s:sequence>
         </s:complexType>
       </s:element>
     </s:sequence>
   </s:complexType>
 </s:element>

GetFormCollectionResult: This structure holds the data returned from the WSDL operation..

Forms: A list of complex types Form. It holds the information of a list of form.

Form: A complex type that holds the information of a form.

Type: A string with the form type. It MUST be the same type as the one defined in GetFormResponse (section 3.1.4.1.2.2).

Url: The server relative URL<3> of the page hosting the form.