Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The <RequestMap> element is the root of the XML-based request mapper configuration.

A special requirement of the root element is that it MUST contain an applicationId attribute with a value of "default", which in turn matches the required id attribute of the outer-most <Applications> element in the shibboleth2.xml file.

Code Block
xml
xml
<RequestMap applicationId="default">
    <Host name="www.example.org">
        <Path name="secure" authType="shibboleth" requireSession="true"/>
    </Host>
    <Host name="admin.example.org" applicationId="admin" authType="shibboleth" requireSession="true">
        <AccessControl>
            <Rule require="affiliation">faculty@osu.edu student@osu.edu</Rule>
        </AccessControl>
    </Host>
</RequestMap>

...

XML attributes corresponding to request mapper properties are used.

A special requirement of this root element is that it MUST contain an applicationId attribute with a value of "default", which in turn matches the required id attribute of the outer-most <Applications> element in the shibboleth2.xml file.

Child Elements

Access Control

...