Microsoft.Exchange.WebServices.Data.ServiceResponseException:无法访问为具有完全权限的用户引发的帐户或邮箱

时间:2015-10-06 06:23:35

标签: c# office365 exchangewebservices

我有两个用户 a@company.com b@company.com 。我正在尝试使用用户a 使用 EWS托管API 访问 b的邮箱。用户a对b的邮箱具有完全权限。我甚至可以从Outlook Web Access的帐户中打开b的邮箱。

但是当我试图访问b的邮箱时,我得到了这个例外。

  

Microsoft.Exchange.WebServices.Data.ServiceResponseException:无法使用   访问帐户或邮箱。

以下是相关代码

<Trace Tag=\"EwsRequest\" Tid=\"7\" Time=\"2015-10-07 11:04:47Z\" Version=\"15.00.0847.030\">
  <?xml version=\"1.0\" encoding=\"utf-8\"?>
  <soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:m=\"http://schemas.microsoft.com/exchange/services/2006/messages\" xmlns:t=\"http://schemas.microsoft.com/exchange/services/2006/types\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">
    <soap:Header>
      <t:RequestServerVersion Version=\"Exchange2013_SP1\" />
    </soap:Header>
    <soap:Body>
      <m:GetFolder>
        <m:FolderShape>
          <t:BaseShape>AllProperties</t:BaseShape>
        </m:FolderShape>
        <m:FolderIds>
          <t:DistinguishedFolderId Id=\"inbox\">
            <t:Mailbox>
              <t:EmailAddress>b@company.com</t:EmailAddress>
            </t:Mailbox>
          </t:DistinguishedFolderId>
        </m:FolderIds>
      </m:GetFolder>
    </soap:Body>
  </soap:Envelope>
</Trace>

这是请求跟踪

<Trace Tag="EwsResponse" Tid="7" Time="2015-10-07 04:19:05Z" Version="15.00.0847.030">
  <?xml version="1.0" encoding="utf-8"?>
  <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
    <s:Body>
      <s:Fault>
      <faultcode xmlns:a="http://schemas.microsoft.com/exchange/services/2006/types">a:ErrorMailboxConfiguration</faultcode>
      <faultstring xml:lang="en-US">Unable to access an account or mailbox.</faultstring>
      <detail>
        <e:ResponseCode xmlns:e="http://schemas.microsoft.com/exchange/services/2006/errors">ErrorMailboxConfiguration</e:ResponseCode>
        <e:Message xmlns:e="http://schemas.microsoft.com/exchange/services/2006/errors">Unable to access an account or mailbox.</e:Message>
      </detail>
      </s:Fault>
    </s:Body>
  </s:Envelope>
</Trace>

这是响应跟踪

Transfer-Encoding : chunked
request-id : 26ee43ea-6444-4f6c-abb0-f041fdb6dde6
X-CalculatedBETarget : BLUPR01MB116.prod.exchangelabs.com
X-BackEndHttpStatus : 500
x-EwsHandler : GetFolder
X-DiagInfo : BLUPR01MB116
X-BEServer : BLUPR01MB116
X-FEServer : SIXPR04CA0091
Cache-Control : private
Content-Type : text/xml; charset=utf-8
Date : Wed, 07 Oct 2015 10:54:15 GMT
Set-Cookie : exchangecookie=e6f7d9dad36b40ad918050eefbd3d25c; path=/
Server : Microsoft-IIS/8.0
X-AspNet-Version : 4.0.30319
X-Powered-By : ASP.NET

这里是响应标题

{{1}}

我观察到的行为是当我手动从OWA的帐户打开b的邮箱时,异常消失了,我可以从代码中访问b的邮箱。再次,当我不得不再次手动从OWA的帐户打开b的邮箱并且循环继续时,同样的异常再次随机重新出现。 有什么想法吗?

2 个答案:

答案 0 :(得分:1)

确定。如果您遇到配置问题,可能会出现错误,可能是多个具有相同SMTP地址的用户。因此,例如,如果您将多个b@company.com用作SMTP地址,则可能会看到此错误。

答案 1 :(得分:0)

这可能与Impersonation有关,请尝试将此行添加到您的代码中:

service.ImpersonatedUserId = new ImpersonatedUserId(ConnectingIdType.SmtpAddress, b@company.com);

有3种方法可以让用户访问其他用户的邮箱:

  1. 通过添加代理并为每个代理指定权限。
  2. 直接修改文件夹权限。
  3. 使用模仿。
  4. 每种方式都有其局限性,您可以从该链接中找到详细信息。