7.3 The configInfo parameter for the XslApplicatorConverter.exe

The full XML schema for the configInfo parameter of the XslApplicatorConverter.exe is as follows.

 <xs:schema
     elementFormDefault="unqualified"
     xmlns:xs="http://www.w3.org/2001/XMLSchema"
 > 
   <xs:element name="RcaTransformation">
     <xs:complexType>
       <xs:sequence>
         <xs:element name="ConverterSettings">
           <xs:complexType>
             <xs:element name="XslApplicatorConverterSettings">
               <xs:complexType>
                 <xs:sequence>
                   <xs:element name="FilePlaceHolder">
                     <xs:complexType>
                       <xs:simpleContent>
                         <xs:extension base="xs:base64Binary">
                           <xs:attribute name="Url" type="xs:anyURI"/>
                         </xs:extension>
                       </xs:simpleContent>
                     </xs:complexType>
                   </xs:element>
                 </xs:sequence>
                 <xs:attribute name='Version' fixed='1' />
               </xs:complexType>
             </xs:element>
             <xs:attribute name="SourceDocLibUrl" type="xs:string" use="required" />
             <xs:attribute name="AllocationLimitHint" type="xs:positiveInteger"
                           use="optional" />
           </xs:complexType>
         </xs:element>
         <xs:any />
       </xs:sequence>
     </xs:complexType>
   </xs:element>
 </xs:schema>

The RcaTransformation and ConverterSettings elements are described in Section 7.1 and the ConverterSettings node contains a child element named XslApplicatorConverterSettings, with the following child element and attribute:

FilePlaceHolder: The content, encoded with base64 encoding, of the file specified by the value of the attribute Url, which is a fully qualified URL of an XSLT file which is capable of converting the XML schema of the file being converted to HTML.

Version: Reserved. Always set to 1.