ASP.NET 和 FedEx 集成

发布于 2024-10-04 12:54:07 字数 381 浏览 7 评论 0原文

我正在做 FedEx 与 asp.net 项目的集成。 Web 服务工作正常,但我对 API 代码有一些疑问

有人知道 FedEx API 中 RateRequestTypes 对象的用途吗?你能告诉我代码中以下几行的目的是什么吗

request.RequestedShipment.RateRequestTypes = new RateRequestType[2];
request.RequestedShipment.RateRequestTypes[0] = RateRequestType.ACCOUNT;
request.RequestedShipment.RateRequestTypes[1] = RateRequestType.LIST;

i am doing FedEx integration with asp.net project. The web service works correct but, I have some doubts about the API code

Anyone know what is the use of RateRequestTypes object in FedEx API? Can you please tell what is the purpose of the following lines in the code

request.RequestedShipment.RateRequestTypes = new RateRequestType[2];
request.RequestedShipment.RateRequestTypes[0] = RateRequestType.ACCOUNT;
request.RequestedShipment.RateRequestTypes[1] = RateRequestType.LIST;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

猥琐帝 2024-10-11 12:54:07

RateRequestType 是,如果您有 Fedex 帐户,您将获得基于帐户的费率,否则列出更昂贵的基本费率。大多数人在为联邦快递开发 API 时都使用基于账户的费率。

The RateRequestType is if you have an Account with Fedex you will get Account based rates, otherwise List base rates which are more expensive. Most people when developing an api for fed ex use account based rates.

电影里的梦 2024-10-11 12:54:07

FedEx API 中的 RateRequestTypes 对象?

简单的回答,不。您需要查看联邦快递(应该)为您提供的文档。

如果问题出在其他地方,例如不理解传入和传出的消息,请查看 fiddler 。我发现在调试 Web 服务时这是非常有价值的。

RateRequestTypes object in FedEx API?

Simple answer, no. You need to look at the documentation FedEx (should've) provided you.

If the problem is elsewhere, such as not understanding the messages being passed to and from, then take a look at fiddler. I find this is worth its weight in gold when debugging web services.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文