Re: HTTPS POST in perl

2006-11-29 Thread Paul Franz
What I use it HTTP and LWP::UserAgent Perl modules use LWP::UserAgent; $ua = new LWP::UserAgent; $ua->agent("AgentName/0.1 " . $ua->agent); my $cgi = new CGI(); my $post = ''; # Create a request my $req = new HTTP::Request POST => 'https://www.server.com'; $req->content_type('application/x-www

RE: HTTPS Post

2002-01-14 Thread David Schwartz
On Fri, 11 Jan 2002 08:47:58 -0600, Scott Frazor wrote: >I tried looking at the RFC and it was not what I was looking for. I think >now that I have read a couple of responses to my original question I am >specificaly looking for how to impliment a POST through OpenSSL's API and >receive the re

RE: HTTPS Post

2002-01-11 Thread Michael Wojcik
Sent: Thursday, January 10, 2002 8:20 AM > To: '[EMAIL PROTECTED]'; 'Scott Frazor' > Subject: RE: HTTPS Post > > > Scott, > Read http://www.ietf.org/rfc/rfc2616 for HTTP information > > -Original Message- > From: Scott Frazor [mailto:[EMAIL

Re: HTTPS Post

2002-01-10 Thread Vadim Fedukovich
On Wed, 9 Jan 2002, Scott Frazor wrote: > Can anyone give me a rough idea on how to prepare and send a https POST via > openssl? I know how to open a socket and connect SSL, but I'm missing > something when it comes to sending a HTTPS POST and RECEIVING the response. > I'm not sure if I'm aski

Re: https post

2001-03-16 Thread Xeno Campanoli
"Ray, Marla S" wrote: > > Please pardon what might seem like a simple question but I am very new to > using the lwp and ssl modules and need some help. > > We are trying to use Perl to do a POST to an HTTPS location. Our post > includes a file and optionally other form input. I can access and