Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Setting Content-Type when POSTing with LWP

by koscher (Initiate)
on Aug 29, 2002 at 21:10 UTC ( [id://193917]=perlquestion: print w/replies, xml ) Need Help??

koscher has asked for the wisdom of the Perl Monks concerning the following question:

I'm using LWP to do a multi-part POST. In the body section associated with the file the header Content-Type header is set to Text/Plain.
How do I set it to something else (like Application/XML)?
example:

Content-Disposition: form-data; name="fname"; filename="deposit1.xml"
Content-Length: 1076
Content-Type: text/plain
<?xml version="1.0" encoding="utf-8"?>

Replies are listed 'Best First'.
Re: Setting Content-Type when POSTing with LWP
by Moonie (Friar) on Aug 29, 2002 at 21:51 UTC
    See lwpcookbook for reference. An example:
    my $req = HTTP::Request->new(POST => 'http://www.perl.com/cgi-bin/Bug +Glimpse'); $req->content_type('application/x-www-form-urlencoded'); $req->content('match=www&errors=0');
Re: Setting Content-Type when POSTing with LWP
by larryk (Friar) on Aug 29, 2002 at 21:59 UTC
    This is untested and I have to rush off but I hope it works
    #!perl use strict; use warnings; use LWP::UserAgent; use HTTP::Headers; use HTTP::Request; my $content = join '', <DATA>; my $ua = LWP::UserAgent->new(); my $h = HTTP::Headers->new( Content_Disposition => 'form-data; name="fname"; filename="deposit +1.xml"', Content_Length => length($content), Content_Type => 'text/xml' ); my $r = HTTP::Request->new('POST', 'http://search.cpan.org/', $h, $con +tent); my $response = $ua->request($r); __DATA__ <?xml version="1.0"?> ...
       larryk                                          
    perl -le "s,,reverse killer,e,y,rifle,lycra,,print"
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://193917]
Approved by grinder
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (4)
As of 2024-03-29 12:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found