Hi Monks,

I have a scenario where I have to upload and download files from FTP server via proxy.

I can download with the code below:
#################### Download my $ua = new LWP::UserAgent(agent => 'MyAgent/1.0') or die "Error: Can +not create object"; $ua->proxy([qw(http https ftp)] => 'http://proxyhost:8080') or die "Er +ror: Problem with Proxy"; my $response = $ua->get('ftp://ftpuser:password@ftp.host.name/remotefi +le.zip', ':content_file' => localfile.zip) or warn "Warn: Failed to d +ownload file from FTP Server "; if ($response->is_success) { print "Found file on remote server \n"; } else { print "File missing on remote server \n"; } #####################
Above code works perfectly fine for downloading the files.
But I dont know how to upload file on FTP server as POST method throwing error that FTP not supported.
Any help is very much appreciated, Thanks.

In reply to How to upload file to FTP server via proxy with LWP::UserAgent by linneighborhood

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.