How can I dump the requeststructure of Apache2 through a perl script.
I have written a script which is like
use lib qw(H:/Identiy-Asserter-setup/PerlHandler); # wherever you will put your handlers
use Apache2::RequestRec ();
use Apache2::RequestIO ();
use Apache2::RequestUtil ();
use Apache2::ServerRec ();
use Apache2::ServerUtil ();
use Apache2::Connection ();
use Apache2::Log ();
use APR::Table ();
use ModPerl::Registry ();
use Apache2::Const -compile => ':common';
use APR::Const -compile => ':common';
1;
This gives error when I try to start apache webserver. I think the "use" is not working in this case.
Can anybody please point me to some good links or let me know what is the easiest way to dump the complete header structure for apache2.