an ASP.NET Open Source CMS & eCommerce platform
Search:
Skip Navigation LinksHome > DotShoppingCart Forums > Support > Using DotShoppingCart > How to add new fedex shipping option?
Last Post 10/6/2010 2:18:43 PM By lukezy. 1 replies.
10/2/2010 7:34:33 AM
bansal_db
Posts: 181
Joined: 4/13/2009
How to add new fedex shipping option?
Hey Luke,
 
I want to add another fedex shipping option <font size="2" color="#000000">Priority overnight for Saturday delivery. Right now there is only Priority Overnight available but the cost is different for both options.
Thanks
 
-D
10/6/2010 2:18:43 PM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: How to add new fedex shipping option?
These methods are exposted from Fedex web services. I don't see the Saturday delivery is defined in their Fedex web service. You can ask Fedex to see if they have the Saturday delivery exposed in the web service. If so, ask where it's defined. We can update the code to include that if we have the information.
 
public enum ServiceType {
        
        /// <remarks/>
        EUROPE_FIRST_INTERNATIONAL_PRIORITY,
        
        /// <remarks/>
        FEDEX_1_DAY_FREIGHT,
        
        /// <remarks/>
        FEDEX_2_DAY,
        
        /// <remarks/>
        FEDEX_2_DAY_FREIGHT,
        
        /// <remarks/>
        FEDEX_3_DAY_FREIGHT,
        
        /// <remarks/>
        FEDEX_EXPRESS_SAVER,
        
        /// <remarks/>
        FEDEX_GROUND,
        
        /// <remarks/>
        FIRST_OVERNIGHT,
        
        /// <remarks/>
        GROUND_HOME_DELIVERY,
        
        /// <remarks/>
        INTERNATIONAL_ECONOMY,
        
        /// <remarks/>
        INTERNATIONAL_ECONOMY_FREIGHT,
        
        /// <remarks/>
        INTERNATIONAL_FIRST,
        
        /// <remarks/>
        INTERNATIONAL_PRIORITY,
        
        /// <remarks/>
        INTERNATIONAL_PRIORITY_FREIGHT,
        
        /// <remarks/>
        PRIORITY_OVERNIGHT,
        
        /// <remarks/>
        STANDARD_OVERNIGHT,
    }
DotShoppingCart Staff