Hi all, I’m thinking about how to receive payment and I’m
looking at PayPal. What I would like to do is embed a dynamically created
button within my Order (which is embedded in my program). After a brief investigation it looks like I would need to
post a form using https to the PayPal server. I would appreciate any comments on the feasibility of this
idea. Thanks, Stewart |
Posting a form with the VW client libs is simple. The blog posting tool I
use does something very much like that every time I push a post to the server. At 08:15 AM 4/4/2006, you wrote: >Hi all, > >I'm thinking about how to receive payment and I'm looking at PayPal. > >What I would like to do is embed a dynamically created button within my >Order (which is embedded in my program). > >After a brief investigation it looks like I would need to post a form >using https to the PayPal server. > >I would appreciate any comments on the feasibility of this idea. > >Thanks, > >Stewart |
In reply to this post by Stew MacLean
Hi Stuewart Load the package WebSupport this extends
the http client with a class called WebClient. WebClient has a utility method: post: anURL formData: aDict "Send url encoded form
data as prescribed by
http://www.w3.org/TR/1999/REC-html401-19991224/interact/forms.html#h-17.13.4" We use it all the time and it is as simple
as it looks. Joerg -----
From: Stewart MacLean
[mailto:[hidden email]] Hi all, I’m thinking about how to receive payment and
I’m looking at PayPal. What I would like to do is embed a dynamically
created button within my Order (which is embedded in my program). After a brief investigation it looks like I would
need to post a form using https to the PayPal server. I would appreciate any comments on the feasibility of
this idea. Thanks, Stewart |
In reply to this post by James Robertson-3
Thanks, however it was the SSL bit I was wondering about, and whether
this was a feasible way of interfacing to PayPal. Cheers, Stewart >-----Original Message----- >From: James Robertson [mailto:[hidden email]] >Sent: Wednesday, 5 April 2006 12:21 a.m. >To: [hidden email] >Subject: Re: Https Client and Embedded PayPal Button > >Posting a form with the VW client libs is simple. The blog posting tool I >use does something very much like that every time I push a post to the >server. > >At 08:15 AM 4/4/2006, you wrote: >>Hi all, >> >>I'm thinking about how to receive payment and I'm looking at PayPal. >> >>What I would like to do is embed a dynamically created button within my >>Order (which is embedded in my program). >> >>After a brief investigation it looks like I would need to post a form >>using https to the PayPal server. >> >>I would appreciate any comments on the feasibility of this idea. >> >>Thanks, >> >>Stewart |
In reply to this post by Joerg Beekmann, DeepCove Labs (YVR)
Hi Joerg, Yes I’ve used the SimpleSMTPClient to good effect. However
I was primarily concerned about SSL, and if this would work interfacing to PayPal. Thanks, Stewart -----Original Message----- Hi
Stuewart Load
the package WebSupport this extends the http client with a class called
WebClient. WebClient has a utility method: post:
anURL formData: aDict
"Send url encoded form data as prescribed by
http://www.w3.org/TR/1999/REC-html401-19991224/interact/forms.html#h-17.13.4" We
use it all the time and it is as simple as it looks. Joerg -----
From: Stewart
MacLean [mailto:[hidden email]] Hi all, I’m thinking about how to receive payment and
I’m looking at PayPal. What I would like to do is embed a dynamically created
button within my Order (which is embedded in my program). After a brief investigation it looks like I would need to
post a form using https to the PayPal server. I would appreciate any comments on the feasibility of this
idea. Thanks, Stewart |
WebClient is a subclass of HttpClient and that one can do both http and
https, so you should be fine. Stewart MacLean wrote: > Hi Joerg, > > Yes I've used the SimpleSMTPClient to good effect. However I was > primarily concerned about SSL, and if this would work interfacing to > PayPal. > > Thanks, > > Stewart > > > -----Original Message----- > From: Joerg Beekmann [mailto:[hidden email]] > Sent: Wednesday, 5 April 2006 2:44 a.m. > To: Stewart MacLean; [hidden email] > Subject: RE: Https Client and Embedded PayPal Button > > Hi Stuewart > > Load the package WebSupport this extends the http client with a class > called WebClient. WebClient has a utility method: > > post: anURL formData: aDict > "Send url encoded form data as prescribed by > http://www.w3.org/TR/1999/REC-html401-19991224/interact/forms.html#h-17. > 13.4" > > We use it all the time and it is as simple as it looks. > > Joerg > > ----- > Joerg Beekmann > DeepCove Labs > 4th floor 595 Howe Street > Vancouver, BC, V6C 2T5 > voice +1.604.689.0322 > fax +1.604.689.0311 > [hidden email] > > > CONFIDENTIALITY NOTICE > Unless otherwise indicated this email contains information that is > private > and confidential. If you have received it in error, please notify the > sender > and delete this message along with any attachments. > _____ > > From: Stewart MacLean [mailto:[hidden email]] > Sent: Tuesday, April 04, 2006 5:16 AM > To: [hidden email] > Subject: Https Client and Embedded PayPal Button > > Hi all, > > I'm thinking about how to receive payment and I'm looking at PayPal. > > What I would like to do is embed a dynamically created button within my > Order (which is embedded in my program). > > After a brief investigation it looks like I would need to post a form > using https to the PayPal server. > > I would appreciate any comments on the feasibility of this idea. > > Thanks, > > Stewart > |
Free forum by Nabble | Edit this page |