Friday 9 March 2012

Error: Access Services is unable to process the request

Error: Access Services is unable to process the request

Checked the permissions of the service account on database as well as on service application all was well with it. We recently installed Service Pack 1 and later June 2011 cummulative update in our environment. That seems to disturb the security token service.

Run the following PowerShell to resolve the issue.

PS c:\> Get-SPServiceApplication
PS c:\> $sts = Get-SPServiceApplication | ?{$_ -match "Security"}
PS c:\> $sts
PS c:\> $sts.Status
PS c:\> $sts.Provision()

IISreset  and once iis was reset, we were all good to leverage our access based sites. 

6 comments:

  1. Hello Plete,

    I am also facing the same issue. but I tried the steps which you mentined.But it did not work for me .
    Appreciate any ideas or suggestions on the same.

    ReplyDelete
    Replies
    1. Is the secure token service running for you? whats the service account you're using for access?

      Delete
  2. Having the same problem, all features checked on O365, doesn't work

    ReplyDelete
  3. I came across this error before, but I fix it by running an IISRESET CMD box.

    ReplyDelete
  4. the reset worked for me. thank you.

    ReplyDelete