When I run the following code on one machine I get tomcat implementation of org.apache.tomcat.dbcp.dbcp.BasicDataSource and when I run it on another machine I get apache commons implementations of org.apache.commons.dbcp.BasicDataSource (which obviously results in ClassCastException). Just wondering why no change in code and context.xml would result in returning two different implementations of DataSource?
Context context = (Context) initialContext.lookup("java:/comp/env");
return (DataSource) context.lookup("jdbc/dbName");

ClassCastException. Both are justjava.sql.DataSourceimplementations, right? Just declare them as such... – BalusC May 19 '11 at 2:20