Outlook Web Access Forms Registry XML Elements

Topic Last Modified: 2008-01-02

The custom forms registry in Microsoft Office Outlook Web Access for Microsoft Exchange Server 2007 Service Pack 1 (SP1) consists of XML files that are located inside the custom forms folders. The registry.xml files must conform to the XML schema that is described in the XML element topics in this section.

Forms Registry File Example

The following example shows a registry.xml file for the custom content class IPM.MyCustomClass. The file registers custom forms for viewing, editing, forwarding, and printing items of the IPM.MyCustomClass class.

Code

<Registry Name="PremiumExtensions" 
        InheritsFrom="Premium" 
        IsRichClient="true">
    <Experience Name="Premium">
        <Client Application="MSIE" MinimumVersion="6" 
            Platform="Windows NT" />
        <Client Application="MSIE" MinimumVersion="6" 
            Platform="Windows 2000" />
        <Client Application="MSIE" MinimumVersion="6" 
            Platform="Windows 98; Win 9x 4.90" />
        <ApplicationElement Name="Item">
            <ElementClass Value="IPM.MyCustomClass">
                <Mapping 
                    Form="https://server/MyCustomView.aspx"
                    RequiredFeatures="Calendar"/>
                <Mapping Action="Open" State="Draft" 
                    Form="https://server/MyCustomEdit.aspx"
                    RequiredFeatures="Calendar"/>
                <Mapping Action="Forward" 
                    Form="https://server/MyCustomForward.aspx"
                    RequiredFeatures="Calendar"/>
                <Mapping Action="Print" 
                    Form="https://server/MyCustomPrint.aspx"
                    RequiredFeatures="Calendar"/>
            </ElementClass>
        </ApplicationElement>
    </Experience>
</Registry>