cancel
Showing results for 
Search instead for 
Did you mean: 

Cybersource Integration with ASP.NET

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/ /omegle

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 /shaglevoojio

but its not happening.

any idea why its not happening?

thanks in advance,

0 REPLIES 0