Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Read section "Integrating Reporting Services into an ASP.NET Application" from <a href="http://msdn.microsoft.com/en-us/library/bb283249(SQL.90).aspx" rel="nofollow noreferrer">MSDN - Best Practices for Configuring Forms Authentication in Reporting Services 2005</a>.<br> You need to change Web.config in both SSRS and ASP.NET application: "...set attributes of the forms and machineKey sections of the Web.config file to the same values for all applications that are participating in shared Forms authentication..." </p> <pre><code>&lt;configuration&gt; &lt;system.web&gt; &lt;authentication mode="Forms" &gt; &lt;!-- The name, protection, and path attributes must match exactly in each Web.config file. --&gt; &lt;forms loginUrl="login.aspx" name=".ASPXFORMSAUTH" protection="All" path="/" timeout="30" /&gt; &lt;/authentication&gt; &lt;!-- Validation and decryption keys must exactly match and cannot be set to "AutoGenerate". The validation and decryption algorithms must also be the same. --&gt; &lt;machineKey validationKey="C50B3C89CB21F4F1422FF158A5B42D0E8DB8CB5CDA1742572A487D9401E3400267682B202B746511891C1BAF47F8D25C07F6C39A104696DB51F17C529AD3CABE" decryptionKey="8A9BE8FD67AF6979E7D20198CFEA50DD3D3799C77AF2B72F" validation="SHA1" /&gt; &lt;/system.web&gt; &lt;/configuration&gt; </code></pre> <p>See <a href="http://msdn.microsoft.com/en-us/library/eb0zx8fc(VS.80).aspx" rel="nofollow noreferrer">MSDN - Forms Authentication Across Applications</a> for details.</p> <p>Also, install <a href="http://msftrsprodsamples.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=4043" rel="nofollow noreferrer">Reporting Services samples for Microsoft SQL Server 2005 SP2</a> and look into "FormsAuthentication Sample"</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload