Exchange Server Webdav:如何检索创建的新项目的唯一 ID
我正在 Exchange Server 2003 中使用 WebDav 创建约会,它运行得非常好。然而,我想为未来的用户获取新创建的项目的句柄,例如设置自定义属性/删除等。
如何为新创建的约会取回唯一的 ID 或其他内容? PROPPATCH 有返回值吗?
谢谢 什里达尔
I am creating the appointments using WebDav in Exchange server 2003 and it is working perfectly fine. I however want to get an handle for the newly created items for future user like setting custom property/deleting etc.
How to get back a unique ID or something for the newly create the appointment? Does the PROPPATCH return any value??
Thanks
Shreedhar
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您创建新项目时,服务器返回 MultiStatus。 MultiStatus 响应内部是项目的 url。保留此 URL 供以后使用(删除/更新项目)。
http://msdn.microsoft.com/en- us/library/aa142976(v=exchg.65).aspx
还有一个来自 Independentsoft 的简洁设计的库,它为 Exchange 实现了 WebDAV 协议。当您创建新项目时,它还会返回项目的 url。
When you create new item server returns MultiStatus. Inside MultiStatus response is item's url. Keep this url for later use (to delete/update item).
http://msdn.microsoft.com/en-us/library/aa142976(v=exchg.65).aspx
There is also a library with clean design from Independentsoft which implements WebDAV protocol for Exchange. It also returns item's url when you create new item.