如何启用 Windows 2003 作为 WebDAV 客户端?
我编写了一个程序,使用 webDAV 从共享点服务器下载文档。它在客户端操作系统(XP、Vista、7)上运行良好,但在 2003 服务器上却无法运行。
如何在 Windows Server 2003 x86 上启用 WebDAV 客户端(而非服务器)?
I have written a program that uses webDAV to download documents from a sharepoint server. It works well with client OS (XP, Vista, 7) but it doesn't on the 2003 server it's supposed to work.
How can I enable WebDAV client (not server) on Windows server 2003 x86 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Server 2003 上,默认情况下不安装 Web 文件夹(WebDAV 客户端)。您可以从 Microsoft 网站安装它: http://www .microsoft.com/download/en/details.aspx?displaylang=en&id=15123
请注意,这将安装 Web 文件夹扩展。如果您希望使用“映射网络驱动器”向导(迷你重定向器、另一个 WebDAV 客户端),请按照以下步骤操作:
确保 WebClient 服务正在运行。打开服务管理单元并找到 WebClient 服务。在 Windows Server 2003 上,该服务默认处于禁用状态。如果该服务被禁用,请打开“WebClient 属性”对话框,然后在“常规”选项卡上将“启动类型”设置为“自动”。重新启动计算机。
您的 WebDAV 服务器必须位于默认端口 80 上。映射网络驱动器向导将无法连接到 80 以外的任何端口,显示“网络路径 http://server/folder/ 找不到”消息。映射网络驱动器功能不支持 SSL / HTTPS 连接。
您的 WebDAV 服务器必须接受匿名连接或使用集成 Windows 身份验证。 Map Network Drive 将无法使用基本或摘要式身份验证连接到 WebDAV 服务器。请改用 NTLM 或 Kerberos。
连接到 WebDAV 服务器上的文件夹而不是站点根目录。 Windows XP 和 Windows Server 2003 上的映射网络驱动器向导将无法连接到 http://server/ 等 URL。而是指定现有文件夹:http://server/folder/。
On Server 2003 Web Folders (WebDAV client) is not installed by default. You can install it from Microsoft website: http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=15123
Note that this will install Web Folders extension. In case you wish to use Map Network Drive wizard (mini-redirector, another WebDAV client) follow this steps:
Make sure WebClient service is running. Open Services snap-in and find WebClient service. On Windows Server 2003 this service is disabled by default. If the service is disabled open WebClient Properties dialog and on General tab set Startup Type to Automatic. Restart the computer.
Your WebDAV server must be located on a default port 80. Map Network Drive wizard will fail to connect to any ports other than 80 displaying “The network path http://server/folder/ could not be found” message. Map Network Drive feature does not support SSL / HTTPS connections.
Your WebDAV server must accept anonymous connections or use Integrated Windows Authentication. Map Network Drive will fail to connect to WebDAV servers using Basic or Digest authentication. Use NTLM or Kerberos instead.
Connect to a folder on a WebDAV server rather than to the site root. The Map Network Drive wizard on Windows XP and Windows Server 2003 will fail to connect to URLs such as http://server/. Instead specify an existing folder: http://server/folder/.
自 Windows 2000 起,WebDAV 客户端应安装在所有 Windows 上。默认情况下,服务器平台可能未启用该服务。检查WebClient 服务是否正在运行。
The WebDAV client should be installed on all Windows since Windows 2000. Probably the service is not on by default for server platforms. Check if the WebClient service is running.