I have an ASP.NET site that uses role-based protection through SQLMemberShipProvder.
Is it possible to provide Internet access to SSRS reports using existing existing MemberhipProvider roles?
For example, if I have the SupportPersonRole role, can I only allow those who use certain reports in this role?
The docs say SQL 2008 R2 uses basic auth for the local security authority. However, if SSRS can only provide its own primary login for SSRS content, I'm not sure how to get the chance to allow the use of MembershipProvider roles.
The ASP.Net page should handle the request for report parameters, so this seems to mean that the "remote" mode is suitable for receiving this function.
The confusing part of SSRS (remotely) has its own security credentials for roles that are independent of ASP.Net-based security. So how do you avoid security management in both places?
source share