HttpClient commons-httpclient 摘要认证
我从使用 commons-httpclient 的 PostMethod 中收到此错误,
没有可用于 DIGEST 'realm'@localhost 的凭据
,并且从服务器返回 401。
我按照这篇文章中的例子 java客户端程序使用HttpClient API发送摘要身份验证请求(2)
但是,它似乎仍然失败。
我正在尝试连接到 XML-RPC 服务,我们使用摘要身份验证。我尝试使用 Apache xmlrpc 库,但它似乎不支持摘要身份验证。
有什么想法吗?
谢谢。
I am getting this error from a PostMethod using commons-httpclient
No credentials available for DIGEST 'realm'@localhost
and a 401 back from the server.
I followed the example from this post
java client program to send digest authentication request using HttpClient API (2)
However, it still seems to fail.
I am trying to connect to a XML-RPC service, we use digest authentication. I tried using the Apache xmlrpc library but it seems to not support digest authentication.
Any ideas?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我正在尝试做同样的事情。我的 XML-RPC 客户端现在工作正常:
但我想使用 http 摘要身份验证。你能解释一下你是怎么做到的吗?
谢谢,
I'm trying to do the exact same thing. I have my XML-RPC client working fine now:
but I'd like to use http digest authentication. Could you explain ho you did it ?
Thanks,