Subject: | HTTP request methods other than GET |
Though my handler is invoked for "GET / HTTP/1.1" requests, it is not invoked for "OPTIONS / HTTP/1.1", "PROPFIND / HTTP/1.1", "FOOBAR / HTTP/1.1", etc. requests.
I registered my handler with POE::Component::Server::HTTP using -
my $http = POE::Component::Server::HTTP->new(
Port => 9080,
ContentHandler => {
'/' => \&handler
}
);
How do I get POE::Component::Server::HTTP to respond HTTP request methods other than GET?
Thanks!
Jack