in reply to Re: HTTPS with lwp problem.
in thread HTTPS with lwp problem.

this my first time around here, can you please tell me what to post? the request ??

my $user_agent = LWP::UserAgent->new; $user_agent->protocols_allowed(['http','https']); push @{$user_agent->requests_redirectable}, 'POST'; $user_agent->cookie_jar(HTTP::Cookies->new()); my $urlObj = URI->new($url); $reqObj = new HTTP::Request($method,$urlObj,$hdrObj,$cgi_param); $resObj = $user_agent->request($reqObj);

This is the request. Thankyou

Replies are listed 'Best First'.
Re^3: HTTPS with lwp problem.
by ikegami (Patriarch) on Nov 03, 2009 at 08:12 UTC

    Which of the three problems do you think is caused by that code?

    can you please tell me what to post?

    Ideally, a minimal piece of code that demonstrates each problem (preferably something runnable), accompanied by both the output you get and the output you expect.

    That's not always necessary, but you haven't given us much to go on. So far, you said you've got three errors, and you haven't shown how you've gotten any of them.

    What you need to post is how you got each of those errors so that we can fix that "how".