xml解析错误

发布于 2024-10-19 02:18:08 字数 1092 浏览 2 评论 0原文

来从联系人列表中删除联系人

<deleteContact rid="100"></deleteContact>
 <uri>sip:[email protected]</uri>
</deleteContact>

我正在为 android 编写一个 ocs IM 客户端,现在我正在尝试使用向 cwa 服务器发出命令请求 ...该命令来自 http://msdn.microsoft.com/en-us/library/bb969527%28v=office.12%29 .aspx

当我将请求发送到 ocs 服务器时,出现以下错误:

Error in XML document (5, 3): deleteContact was not expected

有人知道可能是什么问题吗?或者至少告诉我如何阅读该错误:文档 (5, 3) ...

我的原始代码:

<cwaRequests sid="5" xmlns="http://schemas.microsoft.com/2006/09/rtc/cwa">
  <deleteContact rid="2">
   <uri>
    sip:[email protected]
   </uri>
 </deleteContact>
</cwaRequests>

非常感谢!

I am writing a ocs IM client for android and now I am trying to delete a contact from contact list with the

<deleteContact rid="100"></deleteContact>
 <uri>sip:[email protected]</uri>
</deleteContact>

command request to the cwa server... the command is from http://msdn.microsoft.com/en-us/library/bb969527%28v=office.12%29.aspx.

When I send the request to the ocs server I get the following error:

Error in XML document (5, 3): deleteContact was not expected

Does somebody know what could be the problem? Or at least tell me please how can I read that error: document (5, 3) ...

My original code:

<cwaRequests sid="5" xmlns="http://schemas.microsoft.com/2006/09/rtc/cwa">
  <deleteContact rid="2">
   <uri>
    sip:[email protected]
   </uri>
 </deleteContact>
</cwaRequests>

Thank you very much!

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

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

发布评论

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

评论(1

梦里人 2024-10-26 02:18:08

您需要删除第一行中的结束deleteContact标记:

<deleteContact rid="100"></deleteContact>
 <uri>sip:[email protected]</uri>
</deleteContact>

应该是

<deleteContact rid="100">
 <uri>sip:[email protected]</uri>
</deleteContact>

You need to get rid of the closing deleteContact tag in the first line:

<deleteContact rid="100"></deleteContact>
 <uri>sip:[email protected]</uri>
</deleteContact>

should be

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