Shibboleth with different ApplicationOverride

Cantor, Scott cantor.2 at osu.edu
Thu May 10 21:48:16 BST 2012


On 5/10/12 3:28 PM, "laino_f at libero.it" <laino_f at libero.it> wrote:
>
>i have the following shibboleth configuration file.

Your RequestMap is broken because your sibling Path elements overlap each
other in terms of the web tree, which isn't permitted.

>       <Path name="/gs/gs/co/protectedC"  applicationId="protectedCGS"
>authType="shibboleth" requireSession="true" exportAssertion="true"/>
>        <Path name="/gs/gs/co/protectedB" applicationId="protectedBGS"
>authType="shibboleth" requireSession="true" exportAssertion="true"/>

This has to be:

<Path name="gs/gs/co">
	<Path name="protectedC" applicationId="..." ... />
	<Path name="protectedB" applicationId="..." ... />
</Path>

And so forth.

-- Scott



More information about the users mailing list