基本与摘要协商认证
我正在编写一个 WebDav 实现。我已经实现了基本身份验证和摘要身份验证。
我的问题是并非所有客户端都实现了摘要式身份验证。 (特别是 Dreamweaver) 虽然 Windows Web 文件夹在发送基本的 http 质询时不起作用。
是否可以进行客户端/服务器协商(Http Negotiation/SPNEGO)? 标题会是什么样子?
I'm writing a WebDav implementation. I have implemented both basic and digest authentication.
My problem is that Digest Authentication isn't implemented by all clients. (In particular Dreamweaver)
While Windows Web Folders doesn't work when sent a basic http challenge.
Is it possible to do client/server negotiation (Http Negotiation/SPNEGO)?
What would the headers look like?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Windows 上的 Web 文件夹对话框经常被破坏(不知道是哪个更新,但它影响某些 WinXp 星座以及 Vista 和 7)
net use * http://my-webdav-resource/
命令行在我的经验中大部分工作,即使向导无法连接。但要在纯 HTTP 上使用 Basic-Auth,您需要按照上述 Vista/7 的说明更改注册表。The web folders dialogue is often broken on Windows (do not know by which update, but it affects certain WinXp constellations and both Vista and 7)
The
net use * http://my-webdav-resource/
command line does mostly work in my experience, even when the wizard won't connect. But to use Basic-Auth on plain HTTP you will need to change the registry as described above for Vista/7.