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.
but its not happening.
any idea why its not happening?
thanks in advance,
Ammar
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