Cybersource Integration with ASP.NET

878 Views Asked by At

Dears,

I am following the below link to integrate the cybersource payment gateway into one of our ASP.NET site.

https://searchcode.com/codesearch/view/10126551/

on line 192 as depicted below:

        ReplyMessage reply = CyberSource.Clients.SoapClient.RunTransaction(config, request);

        if ("ACCEPT".Equals(reply.decision.ToUpper()))
        {
            trans.GatewayResponse = reply.decision;
            trans.TransactionNotes = ProcessReply(reply);
            trans.AuthorizationCode = reply.ccAuthReply.authorizationCode;
        }

        if ("REJECT".Equals(reply.decision.ToUpper()))
        {
            throw new Exception("Declined:  " + ProcessReply(reply));
        }

it should hit the cybersource gateway in order to fill the credit card information as below.

screen shot cybersource

but its not happening.

any idea why its not happening?

thanks in advance,

Ammar

1

There are 1 best solutions below

0
On

The issue is that you're trying to integrate with Secure Acceptance using the SOAPI SDK. SA is a totally different product with its own API and integration method. You can find the documentation including examples for ASP.NET here: http://apps.cybersource.com/library/documentation/dev_guides/Secure_Acceptance_WM/Secure_Acceptance_WM.pdf