Exchange Web 服务 API 1.0 错误

发布于 2024-10-01 05:55:23 字数 872 浏览 2 评论 0原文

当我尝试连接到 Microsoft Online 上的 Exchange 服务器时,出现以下错误。我不知道如何访问底层 XML,并且想知道是否会导致此错误,因为交换只是提供标准 OWA 登录表单,而不是 EWS API 期望的 XML 响应。我怎样才能检查这个?

这是我的代码最后一行引发的错误: '>'是一个意想不到的令牌。预期的标记是 '"' 或 '''。第 7 行,位置 62。

这是我的代码:

Dim ews As New ExchangeService
ews.Credentials = New WebCredentials("[email protected]", "mypassword")
ews.Url = New Uri("https://mysubdomain.microsoftonline.com")

'send a test message
Dim message As New EmailMessage(ews)
message.Subject = "Hello World!"
message.Body = "This is a test message"
message.ToRecipients.Add("[email protected]")
message.SendAndSaveCopy()

I'm getting the following error when trying to connect to my exchange server at Microsoft Online. I couldn't see how to get access to the underlying XML and I wondered if this error is caused because exchange is just serving the standard OWA login form, rather than an XML response that the EWS API expects. How can I check this?

This is the error, thrown on the the last line of my code:
'>' is an unexpected token. The expected token is '"' or '''. Line 7, position 62.

This is my code:

Dim ews As New ExchangeService
ews.Credentials = New WebCredentials("[email protected]", "mypassword")
ews.Url = New Uri("https://mysubdomain.microsoftonline.com")

'send a test message
Dim message As New EmailMessage(ews)
message.Subject = "Hello World!"
message.Body = "This is a test message"
message.ToRecipients.Add("[email protected]")
message.SendAndSaveCopy()

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不…忘初心 2024-10-08 05:55:24

我通过将 Uri 更改为以下内容来修复此问题: https://servername/ews/Exchange.asmx

I fixed this by changing the Uri to the following: https://servername/ews/Exchange.asmx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文