an ASP.NET Open Source CMS & eCommerce platform
Search:
Skip Navigation LinksHome > DotShoppingCart Forums > Support > Using DotShoppingCart > breaking down fedex calls to more than one
Last Post 2/22/2011 2:56:54 PM By lukezy. 1 replies.
2/22/2011 9:51:53 AM
bansal_db
Posts: 181
Joined: 4/13/2009
breaking down fedex calls to more than one
Hey Luke,
 
I need to break down the call to fedex service in more than one if the weight for the total shipment is more than 200lbs and then take total for all the calls for each method and display that shipping cost. Today Fedex service doesnt respond if the weight is above 200lbs.
 
Whats the best way to do this?
 
Thanks
 
-D
2/22/2011 2:56:54 PM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: breaking down fedex calls to more than one
Take a look at Shipping\FedexShippingProvider.cs . Basically you need to split it into multiple packages if the total weither is more than the Fedex limit (I think it's either 60lbs or 70lbs. You can look it up via Fedex website). And then pass multiple packages to Fedex web service api to get back the pricing information.
DotShoppingCart Staff