--- On Thu, 3/18/10 at 3:07 PM, Propes, Barry L <barry.l.propes@citi.com> wrote:
> Yes, it should be.
>
> Not sure how that got jumbled as such but what I did have
> was:
>
> Connection connection = null;
> Context initCtx = new InitialContext();
> Context envCtx = (Context)
> initCtx.lookup("java:comp/env");
> DataSource ds = (DataSource)
> envCtx.lookup("jdbc/myoracle");
>
> Tried other variations seen elsewhere on here as suggested.
> But still no dice.
> Odd - like I'd mentioned earlier, I can pass params through
> (DBUrl, user, password) and hit it, but not with a Context
> object.
>
Have you tried 'exploring' JNDI?
NamingEnumeration<NameClassPair> list = initCtx.list("java:comp/env");
- Bob
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org
|