|
Posted by Brian McCauley on July 8, 2006, 1:57 am
Please log in for more thread options
Mark G. wrote:
> 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.
IIRC, although IO::Socket::SSL contains a rudimentary HTTPS client
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.
|