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 2 of 2

Thread: paymentech testing issues

  1. #1
    sduffy77 is offline Senior Member
    Join Date
    Feb 2010
    Location
    Lancaster, PA
    Posts
    142

    Default paymentech testing issues

    Visa and Mastercard worked fine but we got these errors when testing Amex and Disco:

    MC - DECLINED. Merchant not MC Secure code enabled

    Disc - DECLINED. Invalid MCC Sent

    has anyone dealt with this before and have a workaround or is this a bug?

  2. #2
    sduffy77 is offline Senior Member
    Join Date
    Feb 2010
    Location
    Lancaster, PA
    Posts
    142

    Default

    We ended up having to modify the Paymentech.cs Processor class to not include the Mastercard Secure Code if the merchant account is not set up to accept it.

    C#/VB.NET Code:
                    //else if (UseBillingAddress.CardType.Equals("MASTERCARD", StringComparison.InvariantCultureIgnoreCase))
                    
    else if (UseBillingAddress.CardType.Equals("MASTERCARD"StringComparison.InvariantCultureIgnoreCase) && AppLogic.AppConfigBool("Paymentech.UseMCSecureCode"))