http://www.perlmonks.org?node_id=494911


in reply to Signal handlers for POE::Component::*

Haven't looked into this into much detail, but using inheritance might be a solution to your problems:
package POE::Component::Server::MyHTTP;
use base qw(POE::Component::Server::HTTP);
Then override and/or add methods you need.