OT (Mostly)

2006-07-14 Thread Marc Farrow
I am using JUNIT to test java code. However, we have a class that pulls the connection pooling from Tomcat's connection pooling facility. If I am running these JUNIT tests outside of the Tomcat container is there a way to grab a connection pool from a running Tomcat instance? -- Marc Farrow

Re: OT (Mostly)

2006-07-14 Thread Avi Deitcher
Marc, Have a look at MirrorJNDI, which creates an in-memory JNDI structure. I use it to test code that should run inside a servlet container and draw anything from JNDI. It has been a real boon to me. It is at http://www.smardec.com/products/jndi.html Marc Farrow wrote: I am using JUNIT to