Skip Menu |

This queue is for tickets about the HTTP-Message CPAN distribution.

Report information
The Basics
Id: 58925
Status: resolved
Priority: 0/
Queue: HTTP-Message

People
Owner: Nobody in particular
Requestors: justincase [...] yopmail.com
Cc:
AdminCc:

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



Subject: HTTP::Request::Common::POST should accept content as a scalar ref
If posting a large piece of content, it would be good to pass it as a reference to the content. Currently one can not do this: $useragent->post( $uri, Content => \ $blob_of_xml, Content_Type => 'text/xml' ); The only way I can see is to manually construct an HTTP::Request object.