Mailing List Archive

5.10 /Strap and Paypal
I was checking out the demo store and considering using it for a small
project. To integrate Paypal Express would one follow a procedure
similar to that of previous versions, using the instructions in Lyn's
module or is there an easier way? Thanks!

DB

_______________________________________________
interchange-users mailing list
interchange-users@icdevgroup.org
http://www.icdevgroup.org/mailman/listinfo/interchange-users
Re: 5.10 /Strap and Paypal [ In reply to ]
On 02/17/2016 02:36 PM, DB wrote:
> I was checking out the demo store and considering using it for a small
> project. To integrate Paypal Express would one follow a procedure
> similar to that of previous versions, using the instructions in Lyn's
> module or is there an easier way? Thanks!

I used Business::PayPal::API::ExpressCheckout on my latest integration of
PayPal express with Interchange 5, which is IMHO less complicated and
don't embeds all kind of Interchange variables. About 300 lines of
custom code.

Regards
Racke


--
Perl and Dancer Development

Visit our Perl::Dancer conference 2015.
More information on https://www.perl.dance.


_______________________________________________
interchange-users mailing list
interchange-users@icdevgroup.org
http://www.icdevgroup.org/mailman/listinfo/interchange-users
Re: 5.10 /Strap and Paypal [ In reply to ]
> On 02/17/2016 02:36 PM, DB wrote:
>> I was checking out the demo store and considering using it for a small
>> project. To integrate Paypal Express would one follow a procedure
>> similar to that of previous versions, using the instructions in Lyn's
>> module or is there an easier way? Thanks!
>
> I used Business::PayPal::API::ExpressCheckout on my latest integration of
> PayPal express with Interchange 5, which is IMHO less complicated and
> don't embeds all kind of Interchange variables. About 300 lines of
> custom code.
>
> Regards
> Racke
>
>
> --
> Perl and Dancer Development
>
> Visit our Perl::Dancer conference 2015.
> More information on https://www.perl.dance.

Less complicated is good and my next question is predictable. Is this
custom code on github or something, or maybe available from a
coin-operated vending machine?

DB

_______________________________________________
interchange-users mailing list
interchange-users@icdevgroup.org
http://www.icdevgroup.org/mailman/listinfo/interchange-users
Re: 5.10 /Strap and Paypal [ In reply to ]
On 02/17/2016 03:01 PM, DB wrote:
>> On 02/17/2016 02:36 PM, DB wrote:
>>> I was checking out the demo store and considering using it for a small
>>> project. To integrate Paypal Express would one follow a procedure
>>> similar to that of previous versions, using the instructions in Lyn's
>>> module or is there an easier way? Thanks!
>>
>> I used Business::PayPal::API::ExpressCheckout on my latest integration of
>> PayPal express with Interchange 5, which is IMHO less complicated and
>> don't embeds all kind of Interchange variables. About 300 lines of
>> custom code.
>>
>> Regards
>> Racke
>>
>>
>> --
>> Perl and Dancer Development
>>
>> Visit our Perl::Dancer conference 2015.
>> More information on https://www.perl.dance.
>
> Less complicated is good and my next question is predictable. Is this
> custom code on github or something, or maybe available from a
> coin-operated vending machine?
>

I did it for customer, thus the custom code is not available on Github.

It would be possible to make it generic and release it for the general
public or adjust it to an existing project.

Regards
Racke

> DB
>
> _______________________________________________
> interchange-users mailing list
> interchange-users@icdevgroup.org
> http://www.icdevgroup.org/mailman/listinfo/interchange-users
>


--
Perl and Dancer Development

Visit our Perl::Dancer conference 2015.
More information on https://www.perl.dance.


_______________________________________________
interchange-users mailing list
interchange-users@icdevgroup.org
http://www.icdevgroup.org/mailman/listinfo/interchange-users
Re: 5.10 /Strap and Paypal [ In reply to ]
On 02/17/2016 03:06 PM, Stefan Hornburg (Racke) wrote:
> On 02/17/2016 03:01 PM, DB wrote:
>>> On 02/17/2016 02:36 PM, DB wrote:
>>>> I was checking out the demo store and considering using it for a small
>>>> project. To integrate Paypal Express would one follow a procedure
>>>> similar to that of previous versions, using the instructions in Lyn's
>>>> module or is there an easier way? Thanks!
>>>
>>> I used Business::PayPal::API::ExpressCheckout on my latest integration of
>>> PayPal express with Interchange 5, which is IMHO less complicated and
>>> don't embeds all kind of Interchange variables. About 300 lines of
>>> custom code.
>>>
>>> Regards
>>> Racke
>>>
>>>
>>> --
>>> Perl and Dancer Development
>>>
>>> Visit our Perl::Dancer conference 2015.
>>> More information on https://www.perl.dance.
>>
>> Less complicated is good and my next question is predictable. Is this
>> custom code on github or something, or maybe available from a
>> coin-operated vending machine?
>>
>
> I did it for customer, thus the custom code is not available on Github.
>
> It would be possible to make it generic and release it for the general
> public or adjust it to an existing project.
>

Also some DBIx::Class code is used in there :-).

Regards
Racke



--
Perl and Dancer Development

Visit our Perl::Dancer conference 2015.
More information on https://www.perl.dance.


_______________________________________________
interchange-users mailing list
interchange-users@icdevgroup.org
http://www.icdevgroup.org/mailman/listinfo/interchange-users
Re: 5.10 /Strap and Paypal [ In reply to ]
On Wednesday 17 February 2016 09:01:26 DB wrote:
> > On 02/17/2016 02:36 PM, DB wrote:
> >> I was checking out the demo store and considering using it for a small
> >> project. To integrate Paypal Express would one follow a procedure
> >> similar to that of previous versions, using the instructions in Lyn's
> >> module or is there an easier way? Thanks!
> >
> > I used Business::PayPal::API::ExpressCheckout on my latest integration of
> > PayPal express with Interchange 5, which is IMHO less complicated and
> > don't embeds all kind of Interchange variables. About 300 lines of
> > custom code.
> >
> > Regards
> >
> > Racke
>
> Less complicated is good and my next question is predictable. Is this
> custom code on github or something, or maybe available from a
> coin-operated vending machine?
>
> DB

I suppose I should pipe up here and say I've written a new
Business::PayPal::XML, based on Business::PayPal::API but written anew in XML
rather than SOAP - mainly for the sake of better readability and
maintainability. It does pretty much everything in the current Paypal API with
only a couple of calls left to implement. I freely admit that my old Paypal
module for IC has turned into a bit of a nightmare to maintain, and it has to
be said that B::P::API is now in need of updating.

B::P::XML works very well on Dancer with a custom plugin, but the wrapper I've
written for IC5 refuses to work for me. I expect whatever's wrong is something
so blindingly obvious that I'm blind to it, but at the moment I'm too busy
with other stuff to fix it. B::P::XML needs to be documented before I put it
on CPAN, so currently it's just private. You're welcome to both if you want,
so long as they don't go public before being properly finished and documented.

Regards
Lyn

_______________________________________________
interchange-users mailing list
interchange-users@icdevgroup.org
http://www.icdevgroup.org/mailman/listinfo/interchange-users