It's related to mod_perl.
I just have one filter specified in my location tag.
<Location /testproj/AServlet>
SetHandler modperl
PerlInputFilterHandler MyApache2::Test3
</Location>
Here, when I hit http://localhost/testproj/AServlet URL in browser. It just hangs. Test3 filter is calling itself again and again. I want to execute Test3 filter just once and pass control to "AServlet" resource.
What shall I do?
Thanks.