调用 FedEx Web 服务时出现代理身份验证错误
我正在尝试调用 FedEx 跟踪网络服务。目前我正在运行联邦快递本身提供的示例应用程序(添加了我的测试帐号和其他详细信息)。当我运行该应用程序时,出现以下错误:
远程服务器返回错误:(407) 需要代理身份验证。
我在我的组织的代理内部,我尝试使用 WebProxy 类向 Web 服务客户端提供代理服务器详细信息,如下所示:
trackService.Proxy = WebProxy.GetDefaultProxy();
并通过提供代理服务器详细信息如下:
trackService.Proxy = new WebProxy("IP",8080);
但我仍然不断收到相同的错误!有人可以帮助我如何解决这个问题吗?
预先感谢,
问候,
阿卜杜勒·奥拉卡拉
I am trying to call the FedEx tracking webservice. Currently I am running the sample application provided by FedEx itself (Added my test account number and other details). When I run the application, I get the following error:
The remote server returned an error: (407) Proxy Authentication Required.
I am inside a proxy at my organization and I tried provided the proxy server details to the webservice client using the WebProxy class as:
trackService.Proxy = WebProxy.GetDefaultProxy();
and also by providing the proxy server details as:
trackService.Proxy = new WebProxy("IP",8080);
But I still keep getting the same error!! Could somebody help me how to resolve this problem?
Thanks in advance,
Regards,
Abdel Olakara
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您似乎缺少的是代理凭据。试试这个:
What you seem to be missing is the proxy credentials. Try this: