Hallo, I'm trying to use modperl2's feature 'auto configuration' but without success.
Manual says in http://perl.apache.org/docs/general/testing/testing.html#Auto_Configuration that in order to add automatically new items to location is necessary adding a package called TestResponse::'packagename' that magically will be converted in a /TestResponse__'packagename' entry in apache configuration I've tried create such package (simple renaming existing and working package) with name 'TestResponse::TestHandler2' but when i issue following command: my $content2 = GET_BODY( '/TestResponse__TestHandler2?provider=1012&uid=% 2B12233051141&app_id=1223305114-245452&channel=channel&description=bla +bla+bla&debug_response=OK&service_code=acl-service2&command=book' ); ok( t_cmp( $content2, '' ) ); I've this response # received: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> # <html><head> # <title>404 Not Found</title> # </head><body> # <h1>Not Found</h1> # <p>The requested URL /TestResponse__TestHandler2 was not found on this server.</p> # </body></html> I think i'm failing in something but i can't understard where my error is, googling I'didn't found any clue. May some sage help me?