Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post Nov 29, 2012 05:06 AM by Jacques444
Member
41 Points
54 Posts
Jun 01, 2012 07:55 AM|LINK
Hi,
I have a problem with authentication to SSRS 2k8 R2. I have changed all my config settings to Forms authentication.
I Have followed the Codeplex Example: http://msftrsprodsamples.codeplex.com/wikipage?title=SS2008%21Security%20Extension%20Sample&referringTitle=Home
Posted on MSDN: http://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/29415664-092c-4933-a802-9afbe72a9b9d
I am really struggling with this. I get a error 503 Service Unavailible when I want to access from browser..
At the end of the day, All i want to do is allow my reportviewer control, to connect to the SSRS server and show reports...
ANY ideas will be appreciated Greatly!
Regards
Jacques
SSRS FormsAuthentication asp
Nov 29, 2012 05:06 AM|LINK
Added this Class to authenticate using Forms Authentication.
This impersonates the user which you specify.
public class BIAuthentication : IReportServerCredentials { private string _UserName; private string _PassWord; private string _DomainName; public BIAuthentication(string UserName, string PassWord, string DomainName) { this._UserName = UserName; this._PassWord = PassWord; this._DomainName = DomainName; } public System.Security.Principal.WindowsIdentity ImpersonationUser { get { return null; } } public ICredentials NetworkCredentials { get { return new NetworkCredential(_UserName, _PassWord, _DomainName); } } public bool GetFormsCredentials(out Cookie authCookie, out string user, out string password, out string authority) { authCookie = null; user = password = authority = null; return false; } }
Jacques444
Member
41 Points
54 Posts
SSRS 2008 R2 Forms Authentication ERROR
Jun 01, 2012 07:55 AM|LINK
Hi,
I have a problem with authentication to SSRS 2k8 R2. I have changed all my config settings to Forms authentication.
I Have followed the Codeplex Example: http://msftrsprodsamples.codeplex.com/wikipage?title=SS2008%21Security%20Extension%20Sample&referringTitle=Home
Posted on MSDN: http://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/29415664-092c-4933-a802-9afbe72a9b9d
I am really struggling with this. I get a error 503 Service Unavailible when I want to access from browser..
At the end of the day, All i want to do is allow my reportviewer control, to connect to the SSRS server and show reports...
ANY ideas will be appreciated Greatly!
Regards
Jacques
SSRS FormsAuthentication asp
Jacques444
Member
41 Points
54 Posts
Re: SSRS 2008 R2 Forms Authentication ERROR
Nov 29, 2012 05:06 AM|LINK
Added this Class to authenticate using Forms Authentication.
This impersonates the user which you specify.
public class BIAuthentication : IReportServerCredentials { private string _UserName; private string _PassWord; private string _DomainName; public BIAuthentication(string UserName, string PassWord, string DomainName) { this._UserName = UserName; this._PassWord = PassWord; this._DomainName = DomainName; } public System.Security.Principal.WindowsIdentity ImpersonationUser { get { return null; } } public ICredentials NetworkCredentials { get { return new NetworkCredential(_UserName, _PassWord, _DomainName); } } public bool GetFormsCredentials(out Cookie authCookie, out string user, out string password, out string authority) { authCookie = null; user = password = authority = null; return false; } }Regards
Jacques