Skip Menu |

This queue is for tickets about the libwww-perl CPAN distribution.

Report information
The Basics
Id: 65843
Status: resolved
Priority: 0/
Queue: libwww-perl

People
Owner: Nobody in particular
Requestors: RIZEN [...] cpan.org
Cc: alexm [...] cpan.org
AdminCc:

Bug Information
Severity: Wishlist
Broken in: 5.10
Fixed in: (no value)



Subject: PUT should handle files like POST
This isn't a bug so much as a minor feature request. HTTP::Request::Common::POST handles file posting, but with RESTFUL web services you need to be able to do the same thing on a PUT. Right now this is achievable by simply doing: my $req = POST ...; $req->method('PUT'); But it's kind of hackish.
Me too; the put() method was totally throwing me for a loop before I found this bug report.