作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试从 Fedex 接收运费,所以我发送给 Fedex (https://wsbeta.fedex.com:443/web-services/rate) 请求,如下所示(它被序列化为 xml 对象):
<?xml version=\"1.0\" encoding=\"utf-16\"?>
<RateRequest xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">
<WebAuthenticationDetail xmlns=\"http://fedex.com/ws/rate/v10\">
<UserCredential>
<Key>some key</Key>
<Password>some password</Password>
</UserCredential>
</WebAuthenticationDetail>
<ClientDetail xmlns=\"http://fedex.com/ws/rate/v10\">
<AccountNumber>some account number</AccountNumber>
<MeterNumber>some meter number</MeterNumber>
</ClientDetail>
<TransactionDetail xmlns=\"http://fedex.com/ws/rate/v10\">
<CustomerTransactionId>some CustomerTransactionId</CustomerTransactionId>
</TransactionDetail>
<Version xmlns=\"http://fedex.com/ws/rate/v10\">
<ServiceId>crs</ServiceId>
<Major>10</Major>
<Intermediate>0</Intermediate>
<Minor>0</Minor>
</Version>
<ReturnTransitAndCommit xmlns=\"http://fedex.com/ws/rate/v10\">true</ReturnTransitAndCommit>
<CarrierCodes xmlns=\"http://fedex.com/ws/rate/v10\">FDXE</CarrierCodes>
<RequestedShipment xmlns=\"http://fedex.com/ws/rate/v10\">
<ShipTimestamp>2012-08-10T11:42:00.2669059+02:00</ShipTimestamp>
<ServiceType>GROUND_HOME_DELIVERY</ServiceType>
<PackagingType>YOUR_PACKAGING</PackagingType>
<TotalInsuredValue>
<Currency>USD</Currency>
</TotalInsuredValue>
<Shipper>
<Address>
<City>San Francisco</City>
<StateOrProvinceCode>CA</StateOrProvinceCode>
<PostalCode>94129</PostalCode>
<CountryCode>US</CountryCode>
</Address>
</Shipper>
<Recipient>
<Address>
<StreetLines>S</StreetLines>
<StreetLines>s</StreetLines>
<City>New York</City>
<StateOrProvinceCode>NY</StateOrProvinceCode>
<PostalCode>10001</PostalCode>
<CountryCode>US</CountryCode>
<Residential>true</Residential>
</Address>
</Recipient>
<ShippingChargesPayment />
<RateRequestTypes>ACCOUNT</RateRequestTypes>
<RateRequestTypes>LIST</RateRequestTypes>
<PackageCount>1</PackageCount>
<RequestedPackageLineItems>
<SequenceNumber>1</SequenceNumber>
<GroupPackageCount>1</GroupPackageCount>
<InsuredValue />
<Weight>
<Units>LB</Units>
<Value>133.00000</Value>
</Weight>
<Dimensions>
<Units>IN</Units>
</Dimensions>
</RequestedPackageLineItems>
</RequestedShipment>
</RateRequest>
最佳答案
我找到了解决方案。为了解决第一个问题,我必须更改不适合 CarrierCodes 的 ServiceType 值。 GROUND_HOME_DELIVERY 的合适承运人代码是 FDXG。
第二个问题是重量超过 70 磅的包裹应该使用 FEDEX_GROUND 而不是 GROUND_HOME_DELIVERY 发送。
关于.net - 服务类型优先于运营商代码;用于评估错误的服务类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11899747/
我是一名优秀的程序员,十分优秀!