Ask a Question related to PERL Modules, Design and Development.
-
Mark G. #1
Credentials and POST method with IO::Socket::SSL?
Hello.
I need to send form data to a secure server, using the POST method.
I have successfully used IO::Socket::SSL with the GET method, but
I cannot find any examples of posting data using this module.
Can anyone here help?
Thanks
-Mark
Mark G. Guest
-
Post method
Hi there Someone know how to capture the vars and values from the POST method, such like a Matts' FormMail, i want to do somethink like that, and... -
GET or POST method??
I wonder when we should use GET method, when we should use POST method? GET method only sends limited amount of data, and it will show the data as... -
using post method
Hello All, I am trying to use the post method in perl to fill a form. The form is actually for sending an instant message to a cell phone, i would... -
Post method doesn't work
polloshangai@libero.it (DrPollo) wrote in news:219e7b39.0307220905.382bb188 @posting.google.com: the $_ superglobals were introduced in PHP... -
ASP, FORMS, POST METHOD And Post with out form(???)
Lets see if I can decribe, this... I have a form on an html page, that will call a remote site with a post method. Prior to running off to the... -
Mark G. #2
Re: Credentials and POST method with IO::Socket::SSL?
"Mark G." <nospam@thanksanyway.org> wrote:
Well, I got that working. . .encrypted data is flowing.> Hello.
>
> I need to send form data to a secure server, using the POST method.
> I have successfully used IO::Socket::SSL with the GET method, but
> I cannot find any examples of posting data using this module.
Unfortunately, I am getting a 400 response with "Bad Request (Invalid Header
Name)."
It looks like I'll be curling up with a good RFC this evening.
-Mark
Mark G. Guest
-
Brian McCauley #3
Re: Credentials and POST method with IO::Socket::SSL?
Mark G. wrote:
IIRC, although IO::Socket::SSL contains a rudimentary HTTPS client> I need to send form data to a secure server, using the POST method.
> I have successfully used IO::Socket::SSL with the GET method, but
> I cannot find any examples of posting data using this module.
implementation it's more common practice, better documented, more
complete and more reliable to use the HTTPS implementation in LWP
instead.
Note: This this still uses IO::Socket::SSL to do the SSL but uses the
HTTP implementation from LWP.
Brian McCauley Guest



Reply With Quote

