When I login on my ADFS 2.0 server (Update 3) in /adfs/ls/IdpInitiatedSignOn.aspx. After choosing a federation connection to which I am not authorised, I receive the webpage "access denied" with the URL /adfs/ls/auth/integrated/?SAMLRequest=<something>
The logo-picture is not displayed correctly, because the URL in de page source assumes it is located in the current directory. In the dir /adfs/ls/auth/intergrated/ is no logo.png located.
You can configure the logo in the file /adfs/ls/web.config, containing the following lines:
<!-- To display a corporate logo, uncomment the following setting.
For best results, ensure that the filename is a file in the same directory as
this file and is 600 pixels wide by 100 pixels tall.
-->
<add key="logo" value="logo.png" />
This is not correct. You must change the line to:
<add key="logo" value="/adfs/ls/logo.png" />
The logo will now be displayed correctly. The comment in the file is not correct, and should state : enter the full path from the root of the webserver.