Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
HI guys,
I'm using UmbracoCMS 6.1.6 and uCommerce 4.0.6 for building a store site and I have a request to create integration between uCommerce and PayPal so PayPal can store creadit card related details using this: https://developer.paypal.com/webapps/developer/docs/api/#store-a-credit-card
What is the best way to accomplish this task in uCommerce?
One more question, if I need to override PayPalMethodService how to do that?
Hello Ivan,
You can read about setting up the PayPal provider in uCommerce here:http://www.publicvoid.dk/SetupUCommerceToIncludePayPalAsAPaymentMethod.aspx
If you need to override the implementation, simply inherit from the PayPalPaymentMethodService class, and update the IOC container to use your deriving class.You do that by adding something like:
<component id="PayPal"service="UCommerce.Transactions.Payments.IPaymentMethodService, UCommerce"type="YourNamespace.YourClassname, YourAssembly" />
to the Custom.config file.
Kind regards,Jesper
Thank you Jasper
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
uCommerce to Paypal
HI guys,
I'm using UmbracoCMS 6.1.6 and uCommerce 4.0.6 for building a store site and I have a request to create integration between uCommerce and PayPal so PayPal can store creadit card related details using this: https://developer.paypal.com/webapps/developer/docs/api/#store-a-credit-card
What is the best way to accomplish this task in uCommerce?
One more question, if I need to override PayPalMethodService how to do that?
Hello Ivan,
You can read about setting up the PayPal provider in uCommerce here:
http://www.publicvoid.dk/SetupUCommerceToIncludePayPalAsAPaymentMethod.aspx
If you need to override the implementation, simply inherit from the PayPalPaymentMethodService class, and update the IOC container to use your deriving class.
You do that by adding something like:
<component id="PayPal"
service="UCommerce.Transactions.Payments.IPaymentMethodService, UCommerce"
type="YourNamespace.YourClassname, YourAssembly" />
to the Custom.config file.
Kind regards,
Jesper
Thank you Jasper
is working on a reply...