Use .NET to authorize credit card?

  • Thread starter Thread starter Lecture Snoddddgrass
  • Start date Start date
L

Lecture Snoddddgrass

Hi,

I'm designing an application in which the user will enter a credit card
number and expiration date. I want my application [which will be a .NET
service running on my server] to check with the credit card company to get
authorization for billing. If the authorization goes through, my app will
supply the user with a password.... A human being will be responsible for
actually *billing* the person. All my app needs to do is check for
authorized funds. How do I even get started with something like this? Do I
need to call VISA? Is there some special API that is used for this type of
thing? I'm envisioning a simple method that looks like this:

bool IsCreditCardValid(String creditCardNumber, DateTime expDate, double
amount){
//What do I do here?? :(
}

David
 
You need to get a merchant account from a company (there are hundreds) that
provides this as a web service. I don't know that this type of thing is
widespread yet, most of the time they provide the functionality via their
own servers.
 
Back
Top