0

Actually i want to create wcf service for paypal integration and will access this service in web application (.net) using jquery or mobile. So all the paypal integration work should be in wcf service.

So do you have any idea about it. Please help to solve the query.

Thanks

  • possible duplicate of [How can i Integrate PayPal with ASP.NET?](http://stackoverflow.com/questions/638114/how-can-i-integrate-paypal-with-asp-net) – Leena May 08 '15 at 06:16

1 Answers1

0

The question is not very specific, so here's my best shot: you create a standard WCF service whose implementation connects to the Paypal Web API. Both are documented really well so I suggest you follow articles such as these:

  1. End to end tutorial
  2. Paypal API
  3. List item

There could be easier or shorter ways but this will give you the most flexibility in the long run (and less headache in the short term).

Community
  • 1
  • 1
hbulens
  • 1,872
  • 3
  • 24
  • 45
  • Actually my requirement is user gives his credit card information with amount pay to my WCF service and that WCF Service deduct amount from user account and add amount to website owner by integrate paypal – Rahul Rathi May 13 '15 at 06:49
  • Then I think you need to read my first link. The user only needs to provide his credit card information to PayPal and not to your application in plain text (in the best case that'll be over a secured wire). After the payment is done you'll get information about the result, which you can use to manage your user account in your application. – hbulens May 13 '15 at 07:34
  • I have read all links which you mention above but i did not get any solution of my problem. i want user just pass his credit card information from my website and my website pass user credit card information to my WCF service then my WCF service call Pay pall credit card api and send result to my website is payment successfully or not. – Rahul Rathi May 13 '15 at 12:16