T5 Paypal IPN handler

2008-03-13 Thread Baofeng Yu
Hi, I would like to integrate Paypal with a T5 application. Previously with JSP, I had a paypal IPN handler jsp page. After user makes a payment, Paypal posts the payment data to my jsp page and my script checks the data and process it. The jsp script runs in the background and is separate

Re: T5 Paypal IPN handler

2008-03-13 Thread Hugo Palma
I implemented the exact same integration a few weeks ago, also using T5. My approach was to use the Dispatcher concept. All you have to do is implement a class that implements the Dispatcher interface. That dispatcher will get executed in the Tapestry request handling lifecycle. My implementation

Re: T5 Paypal IPN handler

2008-03-13 Thread Baofeng Yu
Thanks for your help. I'll look into this. Hugo Palma wrote: I implemented the exact same integration a few weeks ago, also using T5. My approach was to use the Dispatcher concept. All you have to do is implement a class that implements the Dispatcher interface. That dispatcher will get