Posted on: 4/18/2014 4:28:32 AM | Views : 418

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]; }
<div class="line">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?</div> <div class="line"></div> & ...

Go to the complete details ...