Migrated from IBM RAD to MyEclipse Blue 2014.
On the Java side, I use: java:comp/env/jdbc/tester and on the Websphere Server (8), I specify jdbc/tester as the JNDI name.
But, now I migrated to JBoss AS 7. When specify the JNDI name, I must prefix it with java:/, so it now becomes java:/jdbc/tester
Is this correct way to migrate the JNDI?
If it is, then how should I understand the statement that: “The java:comp is scoped to the current component while the java:/ is the global scope? The former is the module level while the latter is the global level?
Thanks to help.
Eugene