Hello
Harald,
i
think you can use instances instead of classes, under mod_perl 1 i have the
following setup (the code ist just to show how it should work
;.)
under
mod_perl, i think you just have to change the name of the directives(PerlHandler
=> PerlResponseHandler), but i'm not shure, i haven't tried it out until
now.
package MyApp {
sub
handler {
# do your stuff here
}
}
a
startup script "startup.pl"
$MyApp::Instance1 = new MyApp( # some configuration stuff);
$MyApp::Instance2 = new MyApp( # other configuration
stuff);
and in
httpd.conf
<VirtualHost xyz>
<Perl>
require
'startup.pl';
</Perl> <Location /instance1>
SetHandler perl-script
PerlHandler $MyApp::Instance1
</Location>
<Location /instance2>
SetHandler perl-script
PerlHandler $MyApp::Instance2
</Location>
</VirtualHost>
hope
that helps,
greetings gernot
|
- Re: multiple instances of one web application Gernot Homma
- Re: multiple instances of one web application Harald Meier