Довольно расплывчатый вопрос, такой довольно расплывчатый ответ ... Вот как получить Context
:
Context ctx = null;
Hashtable ht = new Hashtable();
ht.put(Context.INITIAL_CONTEXT_FACTORY,
"weblogic.jndi.WLInitialContextFactory");
ht.put(Context.PROVIDER_URL,
"t3://localhost:7001");
try {
ctx = new InitialContext(ht);
// Use the context in your program
}
catch (NamingException e) {
// a failure occurred
} finally {
try {
ctx.close();
} catch (Exception e) {
// a failure occurred
}
}
Вам понадобится wl-client.jar
на пути к классам. Подробнее в Программирование WebLogic JNDI .
PS: я не глотаю исключения, пример документации делает:)