webdav 和 Office 2010 上传中心的 HTTP 摘要身份验证

发布于 2024-09-17 05:35:21 字数 593 浏览 13 评论 0原文

我有一个 Web 应用程序,它具有使用 http 摘要身份验证的 Word WebDav 共享。我们使用像下面这样的javascript在word中打开word文档:

Doc = new ActiveXObject("Sharepoint.OpenDocuments.3");
Doc.EditDocument(url, 'Word.Document');

在office 2003和office 2007中,它可以工作(但不是100%可靠)。在 Office 2010 中,我可以正常打开文档,但是当我保存文档时,它会出现在 Microsoft Office 上传中心,并显示错误“上传失败 - 上传错误”。有一个下拉菜单按钮可以解决该问题,但没有一个选项对诊断有用。

查看服务器上的日志,它已发出 LOCK 请求。

我们使用 PEAR 的 HTTP_WebDAV_Server 的稍微定制版本。我们是否需要切换到更高级的身份验证才能正常工作?这可以从基于 PHP 的 WebDav 服务器完成吗?

I have a web application that has a WebDav share for Word that uses http digest authentication. We use javascript like the following to open word documents on the in word:

Doc = new ActiveXObject("Sharepoint.OpenDocuments.3");
Doc.EditDocument(url, 'Word.Document');

In office 2003 and office 2007, it works (but not 100% reliably). In Office 2010, I can open the document fine, but when I save a document, it comes up in Microsoft Office Upload Center, with the error "Upload Failed - Upload error". There is a drop down menu button offering to resolve the problem, but none of the options are useful in diagnosis.

Looking at the logs on the server, it got as far as making a LOCK request.

We are using a slightly customised version of HTTP_WebDAV_Server from PEAR. Will we need to switch to a more advanced authentication for this to work? Can that be done from a PHP based WebDav server?

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

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

发布评论

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

评论(2

青丝拂面 2024-09-24 05:35:21

作为一个WebDAV服务器实现者,我知道PHP类非常简单,但它在功能上有很多差距。我希望如果我将您链接到我的项目,不会被视为垃圾邮件,但是 SabreDAV 已经相当不错了与大多数客户端兼容,但这是一个更大的项目。

As a WebDAV server implementor, I know the PHP class is very simple, but it has a lot of gaps in functionality. I hope it's not considered spamming if I link you to my project, but SabreDAV has pretty good compatibility with most clients, it's a much larger project though.

单调的奢华 2024-09-24 05:35:21

我在 .Net 上遇到了类似的问题。

我实际上已经对文档进行了 LOCK 和 Word 2010 执行 PUT 操作。

您是否尝试过使用 Fiddler 调试 DAV 会话?如果您使用应用程序和 SharePoint 比较同一文档的 Fiddler 结果,您可能会发现一些差异。

I'm having the similar issue, on the .Net tough.

I've actually made the LOCK and Word 2010 performed PUT of the document.

Did you tried to debug the DAV session using Fiddler? If you compare the results from Fiddler using your application and the SharePoint for the same document you might see some differences.

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