Click here to Skip to main content
15,880,503 members
Please Sign up or sign in to vote.
1.44/5 (2 votes)
I have to develop POS system in C#, desktop application, where we have to integrate payment system using credit card and debit card. 



Is there any payment gateway which provide payment integration without redirecting to their portal or is there any other way to integrate direct payment system?


What I have tried:

I have tried to integrate it using Paypal SDK but it not support direct payment. but it gives error of duplicate debug id for each request.
Posted
Updated 18-Apr-18 19:45pm
Comments
Richard MacCutchan 19-Apr-18 4:31am    
Same answer as I already explained to you.

1 solution

When you asked this question yesterday: How to integrate paypal SDK to windows application ?[^] you were told what to do. That advice has not changed.

Except I would add this: Never, ever, accept code from a insecure website to handle anything to do with real money.
You do not know who is giving you the code, you do not know what it does, you do not know that it places the monies correctly into the appropriate account, without passing the details to any third parties.

Only get such code from reputable card transaction service companies - the scope for fraud otherwise is far too large. And remember, you personally could be liable for any monies lost if your action is seen to be negligent - which getting your code from a public forum would most certainly be!

If you do not know what you are doing in good detail, then you are setting yourself up to fail, in ways that could easily end up with you being fined or jailed for financial fraud. Learn what you are doing, don't assume that a "random website" full of strangers is the best way to get your work done, particularly when real money is involved!
 
Share this answer
 
Comments
Kinjal Sucess 20-Apr-18 5:14am    
You are absolutely right.

I am not asking for sample code. but just want a perfect way to implement payment system in windows form application. I do not have to redirect user to payment getaway site all procession will be done by REST API.

However i reached to solution using Authorize.net which proving complete api for card payment processing.

Thanks.
OriginalGriff 20-Apr-18 5:31am    
You're welcome!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900