开发者

How to Process Credit Card Purchases Through C# Web Service

开发者 https://www.devze.com 2023-03-13 05:59 出处:网络
We are designing an iPhone app for a client and need to create a store front w开发者_如何学Gohere users make purchases. I have everything figured out about the app, except how to process the credit ca

We are designing an iPhone app for a client and need to create a store front w开发者_如何学Gohere users make purchases. I have everything figured out about the app, except how to process the credit card information from the users. The client we are doing this for has a server running Microsoft RMS, which he uses to process orders from his website and stores as well.

Any ideas how we should pass the purchases from the iPhone to the server? (we are designing the server side in c#) And any ideas how our client may be processing those payments now, so that we can integrate easily with their systems? (he uses Microsoft RMS)

Thank you!


This question has been asked and answered more times than I can count. ( How can I bill within an application )

In addition to that information, you should also check out:

  • http://www.microsoft.com/dynamics/rms/using/articles/paymentprocessing.mspx

  • http://www.microsoft.com/en-us/dynamics/products/rms-credit-card-processing.aspx

Which talks specifically about a MS RMS approach.

I believe you can setup RMS to import records from a SQL database... which I'd look into, because I think that it will be a lot easier for you to process the transactions in .NET directly through your gateway of choice, and batch the resulting records for import into the RMS system.

This company claims to offer a product that might make your life easier, but i've never used it, or heard about it before now:

http://internettechnologies.com.au/rms.html

Ditto with this one:

http://www.kosmoscentral.com/ecommerce/rms-integration

Otherwise, regarding iPhone <--> Server, I'd suggest you check out setting up a WCF service which uses JSON.... or look into the objective c soap client proxy generators.... but, honestly, JSON is just much much easier to deal with on the iPhone.

  • http://social.msdn.microsoft.com/Forums/en-IE/wcf/thread/19cbd2a0-9689-4f3a-bc15-f83d620c3bcc

Copy of my answer from the other thread:

There are lots of ways to go about setting up e-commerce sites;

If you don't have any experience whatsoever, and don't want to get into anything "complicated", i would suggest going with a customizable web "storefront" hosted by someone else, pre-integrated with credit card processing, etc. There are tons of options for these online. Just search google for "web storefront". Yahoo! even has such a service:

http://smallbusiness.yahoo.com/ecommerce/sellonline.php

Going beyond that, It's pretty easy to integrate with someone like PayPal. They have all sorts of options from the most basic (use a link to send someone to their site with query string parameters to let paypal know what the user wanted to buy):

https://cms.paypal.com/us/cgi-bin/?&cmd=_render-content&content_ID=developer/home

Beyond that level, you will need to signup for a merchant account, or other similar sort of service, like the one offered by authorize.net (who I like):

http://www.authorize.net/

There are components you can buy for most major web development platforms like .NET, JSP, etc. Perfect example is dotnetcart. These components provide out-of-the-box, easy-to-setup integrations with major CC processing companies, as well as out-of-the-box shopping cart implementations:

http://www.dotnetcart.com/

Finally, most merchant services / payment gateways provide web services for direct integration.

PS.) Never ever ever store CC numbers ; )

0

精彩评论

暂无评论...
验证码 换一张
取 消