调用 FedEx Web 服务时出现代理身份验证错误

发布于 2024-08-31 06:11:03 字数 435 浏览 8 评论 0原文

我正在尝试调用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

゛清羽墨安 2024-09-07 06:11:03

您似乎缺少的是代理凭据。试试这个:

trackService.Proxy = new WebProxy("IP", 8080);
trackService.Proxy.Credentials = new NetworkCredential(
    username, password, domain);

What you seem to be missing is the proxy credentials. Try this:

trackService.Proxy = new WebProxy("IP", 8080);
trackService.Proxy.Credentials = new NetworkCredential(
    username, password, domain);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文