Author | Topic: Paypal credit cards | |
---|---|---|
James Loughner | Paypal credit cards on Mon, 14 Sep 2020 11:42:41 -0400 Has anyone written code to use paypal to process credit cards??? Looking at Paypal docs has me confused. Jim | |
Osvaldo Ramirez | Re: Paypal credit cards on Mon, 14 Sep 2020 21:35:42 -0600 Hello Jim I was working on openpay, via CURL, let me know if openpay work for you. Best Regards Osvaldo Ramirez ramirezosvaldo at yahoo com On 14/09/20 9:42, James Loughner wrote: > Has anyone written code to use paypal to process credit cards??? > > Looking at Paypal docs has me confused. > > Jim | |
James Loughner | Re: Paypal credit cards on Tue, 15 Sep 2020 09:31:01 -0400 That looks like PayPal alternative. What I need is how to interface a EXE to PayPal for our customers. We currently use Payguradian which is a stand alone CC payment system that allows interface to our EXE via exchanged XML files. Note works well in stand alone but does not work for RD instances since RDs are single Windows OS with multiple users sharing resources and PG is installed as a service . But some customers want to use Paypal as the processor since PP has a special setup to barrow money then payback via the CC transactions on sales. So what I need is a method to interface to PayPal with data passed from the EXE and return results back to EXE. But I. kind of lost on WWW interfaces Jim On 9/14/20 11:35 PM, Osvaldo Ramirez wrote: > > Hello Jim > > I was working on openpay, via CURL, let me know if openpay work for you. > > Best Regards > Osvaldo Ramirez > > ramirezosvaldo at yahoo com > > On 14/09/20 9:42, James Loughner wrote: >> Has anyone written code to use paypal to process credit cards??? >> >> Looking at Paypal docs has me confused. >> >> Jim > | |
Osvaldo Ramirez | Re: Paypal credit cards on Tue, 15 Sep 2020 09:04:25 -0600 On 15/09/20 7:31, James Loughner wrote: > That looks like PayPal alternative. > > What I need is how to interface a EXE to PayPal for our customers. We > currently use Payguradian which is a stand alone CC payment system that > allows interface to our EXE via exchanged XML files. Note works well in > stand alone but does not work for RD instances since RDs are single > Windows OS with multiple users sharing resources and PG is installed as > a service . But some customers want to use Paypal as the processor > since PP has a special setup to barrow money then payback via the CC > transactions on sales. So what I need is a method to interface to PayPal > with data passed from the EXE and return results back to EXE. But I. > kind of lost on WWW interfaces > > Jim Ok. Let me do a couple of tests if I can do it. Best Regards Osvaldo Ramirez | |
Regan Cawkwell | Re: Paypal credit cards on Tue, 15 Sep 2020 16:28:11 +0100 On 14/09/2020 16:42, James Loughner wrote: > Has anyone written code to use paypal to process credit cards??? > > Looking at Paypal docs has me confused. > > Jim I saw this Chilkat example recently... https://www.example-code.com/asp/paypal_creditcardpayment.asp Regan Rba | |
James Loughner | Re: Paypal credit cards on Wed, 16 Sep 2020 15:20:54 -0400 On 9/15/20 11:28 AM, Regan Cawkwell wrote: > On 14/09/2020 16:42, James Loughner wrote: >> Has anyone written code to use paypal to process credit cards??? >> >> Looking at Paypal docs has me confused. >> >> Jim > > I saw this Chilkat example recently... > > https://www.example-code.com/asp/paypal_creditcardpayment.asp > Looks interesting need to figure how to use though LOL | |
Regan Cawkwell | Re: Paypal credit cards on Thu, 17 Sep 2020 09:22:34 +0100 On 16/09/2020 20:20, James Loughner wrote: > On 9/15/20 11:28 AM, Regan Cawkwell wrote: >> On 14/09/2020 16:42, James Loughner wrote: >>> Has anyone written code to use paypal to process credit cards??? >>> >>> Looking at Paypal docs has me confused. >>> >>> Jim >> >> I saw this Chilkat example recently... >> >> https://www.example-code.com/asp/paypal_creditcardpayment.asp >> > Looks interesting need to figure how to use though LOL > > We use Chilkat for loads of stuff (ie, xml,http,rest,sftp). It is pretty simple once you get the gist of how they do things. Regan Rba | |
James Loughner | Re: Paypal credit cards on Fri, 08 Jan 2021 14:29:25 -0500 Looked at Chilkat seems it must be run on a web server????? Simply loading the html examples into a browser does not work. We have about 30 customers and I simply don't want to have to setup a web server for each since these people are generally about 30 years behind in anything IT. Using curl is interesting but that means setting up BASH on Windows for each user. ARRG The PayPal coding looks straight forward enough if you are running a web site but for stand alone EXE not so much. Seems like there should be a way to send the code to and receive response direct from the EXE. Any ideas????? Jim On 9/17/20 4:22 AM, Regan Cawkwell wrote: > On 16/09/2020 20:20, James Loughner wrote: >> On 9/15/20 11:28 AM, Regan Cawkwell wrote: >>> On 14/09/2020 16:42, James Loughner wrote: >>>> Has anyone written code to use paypal to process credit cards??? >>>> >>>> Looking at Paypal docs has me confused. >>>> >>>> Jim >>> >>> I saw this Chilkat example recently... >>> >>> https://www.example-code.com/asp/paypal_creditcardpayment.asp >>> >> Looks interesting need to figure how to use though LOL >> >> > > We use Chilkat for loads of stuff (ie, xml,http,rest,sftp). > > It is pretty simple once you get the gist of how they do things. > | |
Andreas Gehrs-Pahl | Re: Paypal credit cards on Sat, 09 Jan 2021 02:40:26 -0500 Jim, >Looked at Chilkat seems it must be run on a web server????? Simply >loading the html examples into a browser does not work. You don't need Chilkat but you can use it in your Xbase++ program. You can also use Xb2Net and possibly even ASInet to accomplish this. >We have about 30 customers and I simply don't want to have to setup a >web server for each since these people are generally about 30 years >behind in anything IT. You certainly don't need a Web Server -- just a Web Client -- which can be implemented (in different ways) as part of your Xbase++ application. >Using curl is interesting but that means setting up BASH on Windows for >each user. ARRG If you don't want to implement a web client in Xbase++, you can of course use curl -- it is available since Windows 10 (build 17063) as part of the command prompt. And can be downloaded as a standalone executable (for free) for DOS and older Windows versions. You don't need bash at all. >The PayPal coding looks straight forward enough if you are running a web >site but for stand alone EXE not so much. I had a quick look at the PayPal Rest API documentation, and it seemed very straight forward even though quite complex. You can probably implement this quite easily with Xbase++ 2.0 (and even with Xbase++ 1.9) using Xb2Net and/or Chilkat. >Seems like there should be a way to send the code to and receive >response direct from the EXE. I would be happy to implement this API -- or a subset of it -- for you, or help you to implement it yourself. I have some experience with implementing REST API calls with JSON requests and responses using Xbase++, Xb2Net, and Chilkat. Send me an email if you would like my help with this. Andreas Andreas Gehrs-Pahl Absolute Software, LLC phone: (989) 723-9927 email: Andreas@AbsoluteSoftwareLLC.com web: http://www.AbsoluteSoftwareLLC.com [L]: https://www.LinkedIn.com/in/AndreasGehrsPahl [F]: https://www.FaceBook.com/AbsoluteSoftwareLLC | |
Itai Ben-Artzi | Re: Paypal credit cards on Sat, 23 Jan 2021 02:39:52 -0800 Jim, Jim, I recommend xb2Net. It comes with great support from Boris. In addition to PayPal, also look at Authorize.net, Stripe and Forte. They cost less than PayPal and easy to implement. Authorize.net will fund you quicker, but ACH is less expensive with Forte. I process credit-cards with Authorize.net and ACHs with Forte; both, by using xb2Net. -Itai |