Click here to Skip to main content
15,886,199 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I used fedex method called ShowFedexRate web serivices on my project. i am sending request to fedex such as weight(3),zipcode(01342),countrycode(US),shiphandling(Y),shipamt(2),residentialadress(Y)

and given origin,destination and other needed for fedex web services.

It works fine. i am getting shipping details here.
for (int j = 0; j < rateReplyDetail.RatedShipmentDetails.Length; j++)
{
RatedShipmentDetail shipmentDetail = rateReplyDetail.RatedShipmentDetails[j];
}

in above codeing i can see the surcharge - RESIDENTIAL_DELIVERY and it's amount. but when address belongs to rural area, the fedex webserives will charge more. so, i searched several zip code from US but everything comes RESIDENTIAL_DELIVERY only. when and how to get RURAL_DELIVERY and it's amount?

And, i can see RESIDENTIAL_DELIVERY and it's amount in surchagre likewise where i can see RURAL_DELIVERY?

help needed.
Posted

1 solution

You should ask the owner: FedEx Developer Resource Center[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900