Hi, I was wondering if is possible using same mod_perl handler with different ports and how can i manage to configure it.

I was thinking of a similar thing:


<Location "/query">
 SetHandler        perl-script
 Listen 12200
 PerlResponseHandler    Handler
</Location>

<Location "/query">
 SetHandler        perl-script
 PerlResponseHandler    Handler2
 Listen 12300
</Location>

so if i call http://../query:12200 i call Handler
and if i call http://../query:12300 i call Handler2

Reply via email to