|
From: Bill H. <bi...@lo...> - 2003-02-05 15:12:46
|
On Wed, 2003-02-05 at 14:57, Christian Nedregaard wrote:
> Or maybe just use the ServletConfigurator servlet Bill is writing for 0.7.
And I've just committed it. This was Andrew Budarevsky's idea. To
configure Proxool and to get it to shutdown correctly you just need to
add something like this to your web.xml:
<servlet>
<servlet-name>ServletConfigurator</servlet-name>
<servlet-class>org.logicalcobwebs.proxool.configuration.ServletConfigurator</servlet-class>
<init-param>
<param-name>xmlFile</param-name>
<param-value>WEB-INF/proxool.xml</param-value>
</init-param>
</servlet>
If, for any reason, you don't want it to autoShutdown you can add:
<init-param>
<param-name>autoShutdown</param-name>
<param-value>false</param-value>
</init-param>
I'm going to be busy documenting the conclusions (?) from these
discussions now :( I'll post something on
http://proxool.sourceforge.net/dev (which is where I put draft
documentation prior to a release).
--
Bill Horsman
Proxool
http://proxool.sourceforge.net
ICQ: 119577180
|