Hi Team,
I have configured Datasource in my ADMIN QA server and the target is only admin server and not manage server and i can see the name as "jdbc/ABDBDS" under the JNDI name, i am also able to test the connection.
I have deployed the application on managed server but when i am trying to programmitically access the same connection.

I am getting run time exception as
Unable to resolve 'jdbc.ABDBDS'. Resolved 'jdbc'; remaining name 'ABDBDS']; Link Remaining Name: 'jdbc/ABDBDS'.
Please is my java pseduo code.
Context initCtx = new InitialContext();
ds = (DataSource) initCtx.lookup("java:comp/env/jdbc/ABDBDS");
Am i missing some configuration ?
Regards,Jay