将 XML Soap 服务与具有身份验证的 Web 代理结合使用(eBay 交易 API)
我们为客户完成了一些 eBay 集成工作,他们给我们带来了挑战 - 他们有一个代理服务器,其中有用户名和密码。
我们已经指出了本文的方向: http://support.microsoft.com/kb/318140
这告诉我们如何使用代理匿名,但不使用用户名和密码。
在本文的底部,它确实提供了一些有关需要 NTLM 身份验证的代理服务器的详细信息,但我看不到如何指定用户名和密码。
如果有帮助的话,我正在使用 C#。
非常感
谢达伦
We have done some eBay integration work for a client, and they have introduced a challenge for us - they have a Proxy server that has a username and password for it.
We've been pointed in the direction of this article:
http://support.microsoft.com/kb/318140
This tells us how to use a proxy annonymously, but not with a username and password.
Towards the bottom of this article it does have some details on Proxy servers that require NTLM authentication but I can't see how to specify a username and password.
If it helps, I'm using C#.
Many thanks
Darren
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅“自定义 ASMX 客户端的方法代理”。特别是,您想要设置 代理 属性指向 WebProxy 实例。使用所需的凭据对其进行配置。
See "Ways to Customize your ASMX Client Proxy". In particular, you want to set the Proxy property to point to a WebProxy instance. Configure it with the required credentials.