<div dir="ltr">Thanks for the response. The Cookies path defaulting to path=/ is OK because that&#39;s where my application resides (in fact, I explicitly set the cookieProp in the shib config to path=/). However, I can&#39;t require Shibsession for / due to legacy constraints. I agree that Shib SP doesn&#39;t see the request to / because nothing tells the webserver to require SP for / which is exactly how I want it. However, by inpsection I determined that HTTP_COOKIE=_shibsession_randomstring=SHIB_SESSION_ID and so was hoping to use the SHIB_SESSION_ID to get attributes previously exported to the session cache during the initial access to /secure. Is that possible? </div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Apr 17, 2015 at 11:37 AM, Peter Schober <span dir="ltr">&lt;<a href="mailto:peter.schober@univie.ac.at" target="_blank">peter.schober@univie.ac.at</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">* Guy Tadi &lt;<a href="mailto:tadiguy812@gmail.com">tadiguy812@gmail.com</a>&gt; [2015-04-17 17:12]:<br>
<span>&gt; The approach I&#39;m considering now is to force sessions that require Shib<br>
&gt; authentication to /secure as defined in RequestMapper &quot;&lt;Path name=&quot;secure&quot;<br>
&gt; When the browser hits /secure it establishes a Shib session and I can<br>
&gt; see all the Shib session attributes. One subsequent access to the<br>
&gt; application path (which is not in /secure) I&#39;d like to get access to the<br>
&gt; Shib attributes but all I see is the session cookie which is<br>
&gt; understandable.<br>
<br>
</span>cookieProps defaults to setting HTTP Cookies with a path=/ so it&#39;s not<br>
about the cookie, but that the Shib SP doesn&#39;t &quot;see&quot; the request when<br>
nothing tells the websever that it should involve the SP. E.g. for<br>
httpd adding this would do it. Check the docs for others:<br>
&lt;Location /&gt;<br>
  AuthType shibboleth<br>
  Require shibboleth<br>
&lt;/Location&gt;<br>
<span><br>
&gt; As expected the attributes are no longer in that particular session<br>
&gt; environment since the access is not to /secure, but the<br>
&gt; SHIB_SESSION_ID is.<br>
<br>
</span>That&#39;s not expected, only a slight misconfiguration of your system.<br>
<span class="HOEnZb"><font color="#888888">-peter<br>
--<br>
To unsubscribe from this list send an email to <a href="mailto:users-unsubscribe@shibboleth.net">users-unsubscribe@shibboleth.net</a><br>
</font></span></blockquote></div><br></div>