I have an ASP.NET site using role based security via the SQLMemberShipProvder.
Is it possible to provide internet access to SSRS reports using my existing MembershipProvider roles?
For example, if I have a role SupportPersonRole, can I allow only people in that role to use certain reports?
The docs say SQL 2008 R2 uses basic auth to the local security authority. However if SSRS can only present it's own basic auth login for SSRS content, I'm not sure how I would get a chance to authorize using the MembershipProvider roles.
The ASP.Net page needs to handle report parameter prompting so it seems this implies "remote" mode is appropriate to get this functionality.
The confusing part is SSRS (in remote mode) has it's own role security credentials, which are separate from ASP.Net role based security. So how do you avoid managing security in both places?