vote up 0 vote down star

Using the SQL Server Reporting Services Web Service, how can I determine the permissions of a particular domain user for a particular report? The user in question is not the user that is accessing the Web Service.

I am accessing the Web Service using a domain service account (lets say MYDOMAIN\SSRSAdmin) that has full permissions in SSRS. I would like to programmatically find the permissions of a domain user (lets say MYDOMAIN\JimBob) for a particular report.

The GetPermissions() method on the Web Service will return a list of permissions that the current user has (MYDOMAIN\SSRSAdmin), but that is not what I'm looking for. How can I get this same list of permissions for MYDOMAIN\JimBob? I will not have the user's domain password, so using their credentials to call the GetPermissions() method is not an option. I am however accessing this from an account that has full permissions, so I would think that theoretically the information should be available to it.

flag

57% accept rate
Does JimBob have explicit rights on folder etc? Or via group membership eg MyDomain\RSUsers – gbn Jun 2 at 17:57
We use active directory groups for almost everything. I have found the groups by using the GetPolicies() method. I suppose I could then query AD for most of those groups to find out if he's in them. but that doesn't cover things like BUILTIN\Administrators, and it's a lot of extra code on my part that I would expect SSRS to be fully capable of doing. – Travis Collins Jun 2 at 18:41

1 Answer

vote up 0 vote down

SSRS gets the NT groups from the users' NT login token. This is why when you are added to a new group, you are expected to log out and back in. The same applies to most Windows checks (SQL Server, shares, NTFS etc).

If you know the NT group(s)...

You can query the ReportServer database directly. I've lifted this almost directly out of one of our reports which we use to check folder security (C.Type = 1). Filter on U.UserName.

SELECT
    R.RoleName,
    U.UserName,
    C.Path
FROM
    ReportServer.dbo.Catalog C WITH (NOLOCK)    --Parent
    JOIN
    ReportServer.dbo.Policies P WITH (NOLOCK) ON C.PolicyID = P.PolicyID
    JOIN
    ReportServer.dbo.PolicyUserRole PUR WITH (NOLOCK) ON P.PolicyID = PUR.PolicyID 
    JOIN
    ReportServer.dbo.Users U WITH (NOLOCK) ON PUR.UserID = U.UserID 
    JOIN
    ReportServer.dbo.Roles R WITH (NOLOCK) ON PUR.RoleID = R.RoleID
WHERE
    C.Type = 1
link|flag
Thanks for the query. This looks like it's giving me the same results as the GetPolicies() web service method. It's returning the names of Active Directory groups, which means I'd then have to query Active Directory in order to get the users. I guess what I want to do is not possible out of the box, and will require a combination of GetPolicies() and querying AD. – Travis Collins Jun 3 at 15:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.