My LWP post works great, except for the file is not getting there. See anything wrong with my code? Am I passing the content_type in correctly? I checked the path to the file, and it is correct. I also tried to read up on HTTP::Request::Common, but that didn't help me very much. THANKS!

#!/usr/lib/perl use strict; use warnings; use LWP::UserAgent; use HTTP::Request::Common; use HTTP::Cookies; use LWP::Simple; my $ua = LWP::UserAgent->new; $ua->agent( "Mozilla/4.5" ); $ua->cookie_jar(HTTP::Cookies->new(file => 'cookie_jar', autosave =>1) +); # configure LWP::UserAgent to follow redirects after POST push @{ $ua->requests_redirectable }, 'POST'; $ua->request(POST "http://www.somesite.com/login.cfm", { username =>"test", password =>"abc", submit =>"Submit" }); my $request = $ua->request(POST "http://www.somesite.com/editproduct.c +fm", Content_Type => 'multipart/form-data', Content => [ name =>"Name", zfile =>"$ENV{DOCUMENT_ROOT}/filena +me.zip", update =>"Update" ]); $b = $request->is_success ? "Application information updated successfu +lly.\n" : "Error during update of application information. The error +has been logged and will be reviewed.\n"; print $b;


Michael Jensen
michael at inshift.com
http://www.inshift.com

In reply to file not getting through post by inblosam

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.