in reply to How to upload file to FTP server via proxy with LWP::UserAgent

FTP as a protocol doesn't have POST (afaict), only put. So either you find something in the documentation that tells you how to do a put operation with LWP, or you have to use a real FTP client for FTP uploads.
Perl 6 - links to (nearly) everything that is Perl 6.
  • Comment on Re: How to upload file to FTP server via proxy with LWP::UserAgent
  • Download Code

Replies are listed 'Best First'.
Re^2: How to upload file to FTP server via proxy with LWP::UserAgent
by linneighborhood (Initiate) on Nov 04, 2009 at 21:29 UTC
    I tried to search for PUT method but failed to get anything.
    I also tried to use Net::FTP module but seems it does not support FTP over HTTP.
    Any help appreciated.
      es not support FTP over HTTP.

      Even the services that offer FTP over HTTP, talk FTP to the FTP server, because that is what FTP server expects.