|
I'm not sure what catalina.root.jar is, the WEB-INF/lib directory should only contain custom jars.
When you put the .class file in the WEB-INF/classes directory, you created all the directories needed for your package?
Your web.xml might be part of the problem. It isn't really needed for something as simple as this (despite what the FAQ on DB connection pools say, you don't need it). I'd remove it temporarily, and see what happens.
It might be some Java 1.5 wackiness as well (at least that's the impression I'm getting with the "The type X is ambiguous" messages). You can try downgrading to Java 1.4.2 and Tomcat 5.0, and see if that helps things, or make the code more 1.5 friendly.
Finally, in TestSQLLoad, try declaring an empty constructor.
|