Cookie Problem

2005-08-01 Thread Mike Blezien
Hello, I'm trying to pass a cookie value as a string. IE: $cookie_string = "$params->{username}|$params->{password}|$time|$time"; $cookie = $cgi->cookie(-name=>'cookie_name',-value="$cookie_string",-expires=>'+1y'); But this is the result I get: test22%7C123456%7C1122932023%7C1122932023 I'

Re: Problem with https post using LWP

2005-08-01 Thread Denzil Kruse
Hi Wiggins, Nope, that's all news to me! Thanks for the help, I'll look into it. Denzil --- Wiggins d'Anconia <[EMAIL PROTECTED]> wrote: > Denzil Kruse wrote: > > Have you read: > > http://search.cpan.org/src/GAAS/libwww-perl-5.803/README.SSL > > And do you have an appropriate SSL interface

Apache vs Apache2 for CGI Only

2005-08-01 Thread Robert
I am only doing CGI stuff. Does Apache2 give me anything besides being the latest greatest? I ask because I tend to experiment with other CGI languages and they sometimes do not have Apache2 implementations. Robert -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [

Re: Problem with https post using LWP

2005-08-01 Thread Wiggins d'Anconia
Denzil Kruse wrote: > Hi all, > > I'm trying send an https post: > > my $url = "https://some.secure.server/secure.dll";; > > my $ua = LWP::UserAgent->new; > > # assemble the request > # > my $request = HTTP::Request->new(POST => "$url"); > $request->content_type('application/x-www-form-urlencod

Problem with https post using LWP

2005-08-01 Thread Denzil Kruse
Hi all, I'm trying send an https post: my $url = "https://some.secure.server/secure.dll";; my $ua = LWP::UserAgent->new; # assemble the request # my $request = HTTP::Request->new(POST => "$url"); $request->content_type('application/x-www-form-urlencoded'); $request->content($content); # send t