Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 3 of 3

Thread: RTShipping.Fedex.CarrierCodes

  1. #1
    random is offline Banned
    Join Date
    Feb 2007
    Posts
    19

    Default RTShipping.Fedex.CarrierCodes

    Tried to limit returned codes to the list in RTShipping.Fedex.CarrierCodes AppConfig parameter, but it seems to have No effect whatsoever on what's getting returned.
    Any comment on this?

  2. #2
    George the Great is offline Senior Member
    Join Date
    Nov 2006
    Location
    Cleveland, OH
    Posts
    1,792

    Default

    We don't utilize that appconfig parameter by default. You would need to open the RTShipping.cs(.vb) file in the AspDotNetStorefrontCore project and in the FedExGetRates method change
    Code:
    string[] FedExCarrierCodes = { "" };
    to
    Code:
    string[] FedExCarrierCodes = AppLogic.AppConfig("RTShipping.Fedex.CarrierCodes").Split(',');
    <a href="http://www.aspdotnetstorefront.com">Shopping Cart Software</a>

  3. #3
    random is offline Banned
    Join Date
    Feb 2007
    Posts
    19

    Default

    Thank you!