<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; color: rgb(0, 0, 0); font-size: 14px; font-family: Calibri, sans-serif;">
<div>Before I submit a Jira improvement request, I was seeking some feedback…</div>
<div><br>
</div>
<div>Recently, we have had a few complaints about embedded links in Office documents causing an issue with SSO sites.  After looking into it, it seems that it can be solved by switching the SP to use POST instead of the Redirect method.  This is due to the
 fact that the Office products follow links until they get a 200 response.  After they get a 200 response, Office hands the request off to the browser.  The issue with the Redirect method is that the Office internal browser has the session cookies that are
 not passed to the browser but the /idp/profile/SAML2/Redirect/SSO?execution=e2s1 link is.   Instead of trying to switch non-local SPs to POST, I came up with some Apache mod-rewrite rules that handle it, but with still some possible issues.  I was wondering
 if it would be worth while to put some code into the IDP that would essentially do the same thing as the mod-rewrite.  Maybe it is possible without code, but with a pure webflow rules.</div>
<div><br>
</div>
<div>
<div>        RewriteCond %{HTTP_USER_AGENT} "Microsoft Office"  [OR] </div>
<div>        RewriteCond %{HTTP_USER_AGENT} "ms-office"</div>
<div>        RewriteRule "^/idp/profile/SAML.*" - [R=200,L]</div>
</div>
<div><br>
</div>
<div>The main thing is that I am trying to prevent is shibboleth from handling those pages. Ideally, the page would display a message that if they are seeing this page, that there is a problem following the embedded link in office.</div>
<div><br>
</div>
<div>Is this worth while to create Jira request for this?</div>
<div><br>
</div>
<div><br>
</div>
<div>-Bradley</div>
<div>
<div id="MAC_OUTLOOK_SIGNATURE"></div>
</div>
</body>
</html>