Skip Menu |

This queue is for tickets about the XML-Atom CPAN distribution.

Report information
The Basics
Id: 6129
Status: resolved
Worked: 15 min
Priority: 0/
Queue: XML-Atom

People
Owner: cpan [...] stupidfool.org
Requestors: miyagawa [...] bulknews.net
Cc:
AdminCc:

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



Subject: "handle_request or die" is evil
XML::Atom::Server goes: eval { $out = $server->handle_request or die $server->errstr; if (defined $out && $server->{is_soap}) { This doesn't allow us to implemente "DELETE" method to return 200 OK Content-Type: application/x.atom+xml I mean in this case handle_request() returns ''. So patching this: eval { $out = $server->handle_request(); defined($out) or die $server->errstr; would fix it.