Hi,

Am Donnerstag, den 25.02.2010, 14:45 -0600 schrieb Propes, Barry L :
> Sorry for the delay - supplying both my META-INF/context.xml and 
> webapps/WEB-INF/web.xml contents.
just to be sure, the dirs META-INF and WEB-INF are both located inside
your webapplication, right?

Have you checked, that there is no context file present in
conf/Catalina/localhost? That file would be checked first by tomcat and
all your editing in META-INF/context.xml would have no effect.

Bye
 Felix
> 
> 
> Should be noted: for the factory type in the params below, I tried both 
> factory="org.apache.commons.dbcp.BasicDataSourceFactory" and
> factory="org.apache.dbcp.BasicDataSourceFactory", each to no avail.
> 
> I removed the commons ref to test out since there's no commons/lib dir in TC 
> 6.0.24, unlike in TC 4.1.31
> 
> Please apprise if the error is glaring here and I just can't see it. That's 
> certainly possible!
> 
> Thanks, Chuck.
> 
> 
> context.xml in META-INF fldr
> ---------<?xml version="1.0" encoding="UTF-8"?>
> <!--
>   Licensed to the Apache Software Foundation (ASF) under one or more
>   contributor license agreements.  See the NOTICE file distributed with
>   this work for additional information regarding copyright ownership.
>   The ASF licenses this file to You under the Apache License, Version 2.0
>   (the "License"); you may not use this file except in compliance with
>   the License.  You may obtain a copy of the License at
> 
>       http://www.apache.org/licenses/LICENSE-2.0
> 
>   Unless required by applicable law or agreed to in writing, software
>   distributed under the License is distributed on an "AS IS" BASIS,
>   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
>   See the License for the specific language governing permissions and
>   limitations under the License.
> -->
> <Context>
>   <!-- omitting - factory="oracle.jdbc.pool.OracleDataSourceFactory" below--> 
>  
> <Resource name="jdbc/myoracle" 
> auth="Container" 
> type="javax.sql.DataSource"
> factory="org.apache.commons.dbcp.BasicDataSourceFactory"
>  maxActive="125" 
>  maxIdle="15" 
>  maxWait="7000"
>  removeAbandoned="true"
>  removeAbandonedTimeout="30"
>  logAbandoned="true"
> username="user_name" 
> password="pass_word" 
> driverClassName="oracle.jdbc.OracleDriver"
> url="jdbc:oracle:thin:@159.177.102.100:1526:MYSID"
> minEvictableIdleTimeMillis="5000"
> timeBetweenEvictionRunsMillis = "10000"
> testWhileIdle="true"
> /> 
> </Context>
> 
> 
> in webapps/WEB-INF/web.xml
> 
> <resource-ref>
> <description>My Ora datasource</description>
> <res-ref-name>jdbc/myoracle</res-ref-name>
> <res-type>javax.sql.DataSource</res-type>
> <res-auth>Container</res-auth>
> </resource-ref>
> 
> -----Original Message-----
> From: Caldarale, Charles R [mailto:chuck.caldar...@unisys.com] 
> Sent: Tuesday, February 23, 2010 5:53 PM
> To: Tomcat Users List
> Subject: RE: DB connection error -Tomcat 6 config
> 
> If you don't mind, post your <Context> element again.  The error message 
> indicates something doesn't match between what your JSP/servlet is requesting 
> and what's registered via the <Resource> element.
> 
>  - Chuck
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org
> 



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to