I'm new to proxool and tries to get it to work under a servlet environment.
I've registered the configuration servlet in my web.xml file as described:
<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/conf/proxool.xml</param-value>
</init-param>
</servlet>
Adn put my proxool.xml file in the folder: "WEB-INF/conf" in the web
application. I would then expect the pool to be registered as I reload
the application, but it is not.
The administration servlet respons is:
Proxool 0.9.0RC2 (23-Mar-2006 23:39)
No pools have been registered.
I've successfully set up a connection pool in the very same environment
where I've set the properties using java.
Please give a hint to where I can find the log statements or how I can
figure out what went wrong. I have a few ideas:
- The connection pool is not set up automatically as I reload the
application.
- I've somehow made a mistake as I initiated the connection pool, but
can't see what.
Thanks
Morten Andersen
|