Calm down man... actually I already posted my server.xml file here...
But here is it again. I continue to get error "org.hsql.jdbcDriver"
not found.
On Mon, 2002-08-19 at 14:18, Peter T. Abplanalp wrote:
> On Mon, Aug 19, 2002 at 02:18:04PM -0300, Felipe Schnack wrote:
> > Anyone here can help me with my connectionpool (tomcat4+pgsql)
> > problem? I'm stuck!
>
> you're kidding, right? how is anyone supposed to help you based on
> the information you've given? what is the error you are getting?
> where are you getting it from? are you using connection pooling? if
> so, which implementation? etc. etc. etc.
>
> --
> Peter Abplanalp
>
> Email: [EMAIL PROTECTED]
> PGP: pgp.mit.edu
--
Felipe Schnack
Analista de Sistemas
[EMAIL PROTECTED]
Cel.: (51)91287530
Linux Counter #281893
Faculdade Ritter dos Reis
www.ritterdosreis.br
[EMAIL PROTECTED]
Fone/Fax.: (51)32303328
<Server port="8005" shutdown="SHUTDOWN" debug="0">
<Service name="Tomcat-Standalone">
<Connector className="org.apache.catalina.connector.http.HttpConnector"
port="8080" minProcessors="1" maxProcessors="5"
enableLookups="true"
acceptCount="10" debug="0" connectionTimeout="60000"/>
<!-- Define the top level container in our container hierarchy -->
<Engine name="Standalone" defaultHost="localhost" debug="0">
<!-- Global logger unless overridden at lower levels -->
<Logger className="org.apache.catalina.logger.FileLogger" prefix="catalina_log." suffix=".txt" timestamp="true"/>
<Host name="localhost" debug="0" appBase="webapps" unpackWARs="true">
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" prefix="localhost_access_log." suffix=".txt" pattern="common"/>
<Logger className="org.apache.catalina.logger.FileLogger" directory="logs" prefix="localhost_log." suffix=".txt" timestamp="true"/>
<Context path="/poolman" docBase="poolman" debug="0" reloadable="false" crossContext="true">
<Logger className="org.apache.catalina.logger.FileLogger"
prefix="localhost_poolman_log." suffix=".txt"
timestamp="true"/>
<Resource name="jdbc/w2" auth="Container" type="javax.sql.DataSource"/>
<ResourceParams name="jdbc/w2">
<parameter><name>factory</name><value>org.apache.commons.dbcp.BasicDataSourceFactory</value></parameter>
<parameter><name>maxActive</name><value>100</value></parameter>
<parameter><name>maxIdle</name><value>30000</value></parameter>
<parameter><name>maxWait</name><value>100</value></parameter>
<parameter><name>username</name><value>pgsql</value></parameter>
<parameter><name>password</name><value></value></parameter>
<parameter><name>driverClassName</name><value>org.postgresql.Driver</value></parameter>
<parameter><name>url</name><value>jdbc:postgresql://jabba:5432/w2</value></parameter>
</ResourceParams>
</Context>
</Host>
</Engine>
</Service>
</Server>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>