如何在黑莓中使用Exchange Web服务

时间:2013-06-03 07:22:03

标签: java soap blackberry exchangewebservices

我想使用自动发现Exchange Web服务从黑莓应用程序中的outlook日历中获取会议相关信息。

为此,我正在使用EWS SOAP自动发现请求xml:

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:a="http://schemas.microsoft.com/exchange/2010/Autodiscover" 
        xmlns:wsa="http://www.w3.org/2005/08/addressing" 
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
        xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Header>
    <a:RequestedServerVersion>Exchange2013</a:RequestedServerVersion>
    <wsa:Action>http://schemas.microsoft.com/exchange/2010/Autodiscover/Autodiscover/GetUserSettings</wsa:Action>
    <wsa:To>https://autodiscover.exchange.microsoft.com/autodiscover/autodiscover.svc</wsa:To>
  </soap:Header>
  <soap:Body>
    <a:GetUserSettingsRequestMessage xmlns:a="http://schemas.microsoft.com/exchange/2010/Autodiscover">
      <a:Request>
        <a:Users>
          <a:User>
            <a:Mailbox>User1@Contoso.com</a:Mailbox>
          </a:User>
        </a:Users>
        <a:RequestedSettings>
          <a:Setting>UserDisplayName</a:Setting>
          <a:Setting>UserDN</a:Setting>
          <a:Setting>UserDeploymentId</a:Setting>
          <a:Setting>InternalMailboxServer</a:Setting>
          <a:Setting>MailboxDN</a:Setting>
          <a:Setting>PublicFolderServer</a:Setting>
          <a:Setting>ActiveDirectoryServer</a:Setting>
          <a:Setting>ExternalMailboxServer</a:Setting>
          <a:Setting>EcpDeliveryReportUrlFragment</a:Setting>
          <a:Setting>EcpPublishingUrlFragment</a:Setting>
          <a:Setting>EcpTextMessagingUrlFragment</a:Setting>
          <a:Setting>ExternalEwsUrl</a:Setting>
          <a:Setting>CasVersion</a:Setting>
          <a:Setting>EwsSupportedSchemas</a:Setting>
        </a:RequestedSettings>
      </a:Request>
    </a:GetUserSettingsRequestMessage>
  </soap:Body>
</soap:Envelope>

请求xml(http://msdn.microsoft.com/en-us/library/jj900154%28v=exchg.150%29.aspx

的参考

来自http://msdn.microsoft.com/en-us/library/ee332364.aspx链接:我知道需要点击的网址是https://autodiscover.contoso.com/autodiscover/autodiscover.xml

现在,当我使用提到的请求xml(HttpConnection POST方法)访问url时,获取认证失败的401响应代码。

我尝试https://www.testexchangeconnectivity.com来测试自动发现配置,并且它已成功运行。

那么在点击URL之前的身份验证过程是什么,或者我还缺少其他的东西。

我搜索了很多但找不到任何解决方案。

提前致谢。

0 个答案:

没有答案