Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Re: Re: Re: Handling XML content with HTTP::Daemon

by hackmare (Pilgrim)
on Jul 10, 2002 at 10:00 UTC ( [id://180713]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Re: Handling XML content with HTTP::Daemon
in thread Handling XML content with HTTP::Daemon

Here was the problem...

I needed to create an HTTP::Response object explicitly and assign it a return code, content, and header information.

#new response object with default error values my $response = new HTTP::Response( 404,undef,undef,"404 - Not found." +); #assign values using obvious methods $response->header(Content_Length => $len); $response->header(Content_Type => "image/svg+xml"); $response->content($out); $response->code(200); $c->send_response($response);

This works now.

Thanks you all for the help.

hackmare.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (3)
As of 2024-04-25 20:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found