[OT] New SSL API Vuln e.g. AWS/Paypal

2012-10-25 Thread Chris Mylonas
Hi Tapestry List, Some of you may have come across this from a slashdot article. Seeing as some of you may work in places that use AWS or Paypal, you might want to get some auditing/preventative-maintenance done :) Relevant part: In addition to certificate validation vulnerabilities in a

Re: paypal

2011-12-22 Thread Chris Mylonas
ng an application that uses PHP stuff (drupal.org + >> ubercart.org) to tapestry5 early next year. >> the paypal integration is new to me in java, does a library exist already >> that just requires the keys put into a file? > > There's more than one way to skin

Re: paypal

2011-12-21 Thread Kalle Korhonen
On Wed, Dec 21, 2011 at 8:05 PM, Chris Mylonas wrote: > after taking most of this year off from deving i'm looking at a project for > early next year. > i'm looking at porting an application that uses PHP stuff (drupal.org + > ubercart.org) to tapestry5 early next year. &g

paypal

2011-12-21 Thread Chris Mylonas
hi tapestry users, after taking most of this year off from deving i'm looking at a project for early next year. i'm looking at porting an application that uses PHP stuff (drupal.org + ubercart.org) to tapestry5 early next year. the paypal integration is new to me in java, does a lib

Re: [T5] and PayPal

2010-08-26 Thread Michael Gerzabek
Am 25/08/2010 22:33, schrieb badluck13: Sorry, but for now I must also hack it, because I'm out of time and deadline is really close... But in near future I'm interested to work with you to create module for paypal, even components and other stuff, but right now I need solution, and

Re: [T5] and PayPal

2010-08-25 Thread badluck13
Sorry, but for now I must also hack it, because I'm out of time and deadline is really close... But in near future I'm interested to work with you to create module for paypal, even components and other stuff, but right now I need solution, and I need it fast ^_^ So if you can share

Re: [T5] and PayPal

2010-08-25 Thread Michael Gerzabek
I did, with 5.0.18 an axis 1.3. It's a kind of a hack, so not really proper. no bells and whistles. But if you're interested we could combine our efforts an produce a cleaner module together. Am 25/08/2010 17:49, schrieb badluck13: Did anyone integrated paypal with tapestry? And

Re: [T5] and PayPal

2010-08-25 Thread Kalle Korhonen
More than one way to skin the Paypal cat. I use Paypal's standard SOAP api with CXF's cxf-rt-frontend-jaxws client; it has very little to do with Tapestry and all about Paypal's SOAP. Follow their examples on their developer sandbox, they have decent documentation. On the frontend,

[T5] and PayPal

2010-08-25 Thread badluck13
Did anyone integrated paypal with tapestry? And if you did can you share a little code example... ^_^ TNX -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-and-PayPal-tp2652987p2652987.html Sent from the Tapestry - User mailing list archive at Nabble.com

Re: T5 Paypal IPN handler

2008-03-13 Thread Baofeng Yu
validate order // send confirmation back to paypal return true; } So now you have a Dispatcher that gets executed when someone access the url http://myserver/mycontext/notifyorder. So just give that URL to paypal and your set. Baofeng Yu wrote: Hi, I would like to integrate P

Re: T5 Paypal IPN handler

2008-03-13 Thread Hugo Palma
tion logic */) { } public boolean dispatch(Request request, Response response) throws IOException { String path = request.getPath(); if (!path.startsWith(PATH_PREFIX)) return false; // validate order // send confirmation back to paypal return true;

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