Adsence750x90

Showing posts with label Payment Module. Show all posts
Showing posts with label Payment Module. Show all posts

Wednesday, November 12, 2008

Helps Authorize.Net Payment Integration

i can help you in Authorize.Net Payment Integration. i am providing a dll file for payment integration. if u did not satisfy on that file u can contact me for payment integration process and provide other help in C# ASP.NET programming. you can check my payment helper file for test purpose.

Tuesday, September 30, 2008

Authorize.Net Payment Helper dll file for Microsoft.Net - code samples with detailed description

Authorize.Net Payment Helper for ASP.Net and C#

i am going to provide a new helper file for payment gateway integration for Authorize.net. it reduce the coding for programmer. i am using this payment helper for my project and working fine i am also providing help for how to use the dll(Helper) file in your code.

Helper file contain
1 methord
  • PaymentProcess
/*public void PaymentProcess(string cardNumber, string securityNumber, string expirationDate, string amount, string firstName, string lastName, string address, string zipCode, string authUrl, string authApiLogin, string authTransactionKey, string authTestMode);
*/
and 4 properties named
  • TransactionID ( get transaction id of successful payment ).
  • PaymentSuccess ( get message failed or success ).
  • PaymentMessage (get resulting message from Authorize.Net).
  • PaymentStatus( true for success and false for failure).
implimentation
add refference dll (Helper dll) in your bin folder.

using RajusAuthorizeDotNetPaymentHelper;

create object for helper dll

PaymentHelper objPaymentHelper;
objPaymentHelper = new PaymentHelper();

pass parameters for the methord PaymentProcess
after successful payment all properties are listed.

Source code for implimentation
/* public void PaymentProcess(string cardNumber, string securityNumber, string expirationDate, string amount, string firstName, string lastName, string address, string zipCode, string authUrl, string authApiLogin, string authTransactionKey, string authTestMode);*/

objPaymentHelper.PaymentProcess(@"Card number", "securityNumber", "02/2012", "20",
"raju", "m", " test address ", "300019", "https://test.authorize.net/gateway/transact.dll", "API Login ID", "Transaction Key", "FALSE");
Response.Write("
Payment Message: " + objPaymentHelper.PaymentMessage.ToString());
Response.Write("
Payment Status: " + objPaymentHelper.PaymentStatus.ToString());
Response.Write("
Payment Success: " + objPaymentHelper.PaymentSuccess.ToString());
Response.Write("
Payment Transaction ID: " + objPaymentHelper.TransactionID.ToString());


after Successful Transaction
Payment Message: This transaction has been approved.
Payment Status: Success
Payment Success: True
Payment Transaction ID: 2147531580


Download payment Helper file

Friday, June 6, 2008

Any one want Integration Code or HELP for Authorize.net with ASP.NET -SIM Methord

Any one want Integration Code or HELP for Authorize.net with ASP.NET -SIM Methord

if u want any help in Payment Integration with Authorize.NET and ASP.NET Please Inform me. i will solve your problem.you just post a comment or send me private email to

raju.rajum@gmail.com
or
raju.m@live.com.

Tuesday, May 13, 2008

Download Authorize.Net Implementation and User Guide for SIM

Download Authorize.Net Implementation and User Guide for SIM

Need HELP for Payment gateways - Authorize.Net implementation Guide.It Explain How to implement Gateways with Examples
Click here to Download Sim Guide means Simple Integration Method

Monday, May 5, 2008

The transaction resulted in a AVS mismatch from Authorize.Net- error code 2|2|27

How to avoid "The transaction resulted in an AVS mismatch" From Authorize.net Response (error code 2|2|27)

Credit card processing via Authorize.Net.

Solve AVS mismatch problem in credit card processing.
AVS means Address Verification System. This error come when the card owners address mismatch with card owners back account.Authorize.Net compare both address(ie sent address and card owners bank account address).you can simply avoid this problem, when you pass two more variables to Authorize.Net.

These two

1:x_address =contains the address of the customer associated with the billing address for the transaction
2:x_zip =contains the zip of the customer associated with the billing address for the transaction

if u pass these values to Authorize.Net it will return Success payment transaction result( 1|1|1|This transaction has been approved)

Post your Reply