When on client sites using XI R2 -- Tomcat and Java Infoview, I was able to get around the problem of SSO users not being able to log off (due to being directed back to the login page and logging back in immediately) by editing the web.xml under \Business Objects\BusinessObjects Enterprise 12.0\warfiles\WebApps\InfoViewApp\WEB-INF so that when logging off they were directed to their intranet, or an alternate page, etc...
<context-param>
<param-name>url.exit</param-name>
<param-value>http://intranet</param-value>
</context-param>
However, that was in XI R2 and when trying to mimic this in a 3x environment using IIS/.NET I must edit the web.config under \Business Objects\BusinessObjects Enterprise 12.0\Web Content\InfoViewApp\InfoViewApp instead of the web.xml...
<!-- URLs -->
<add key="url.exit" value="http://intranet"/>
It is the correct parameter to edit, however it is apparent that the url.exit parameter is just being smacked in the middle of an existing logoff URL instead of replacing it entirely.
I'd like to avoid using SAP Note 1185467 which suggests redirecting from the default.html file to a manually created html file that then redirects to an alternate page if possible.
Any suggestions? I must be close...