Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a simple EJB app that used to work about 6 months ago. I installed the latest JDeveloper (11.1.1.3.0) and I'm trying to get it to work again, when I ran into this problem.

Deployment fails on this line:

TeacherManager teacherManager = (TeacherManager)context.lookup("Uran_2.0-TeacherManager#hu.elte.pgy2.BACNAAI.UranEJB.TeacherManager");

With the message (emphasis by me):

javax.naming.NameNotFoundException: While trying to lookup 'Uran_2.0-TeacherManager#hu.elte.pgy2.BACNAAI.UranEJB.TeacherManager' didn't find subcontext 'Uran_2'. Resolved '' [Root exception is javax.naming.NameNotFoundException: While trying to lookup 'Uran_2.0-TeacherManager#hu.elte.pgy2.BACNAAI.UranEJB.TeacherManager' didn't find subcontext 'Uran_2'. Resolved '']; remaining name 'Uran_2/0-TeacherManager#hu/elte/pgy2/BACNAAI/UranEJB/TeacherManager'

Apparently the application's name (Uran_2.0) somehow prompts JDeveloper (or JNDI? I'm not sure) to replace the . in the name with a /, which obviously causes the JNDI lookups to fail. How can I get around this?

share|improve this question

1 Answer

Your Stateless/Stateful EJB should explicitly specified the JNDI name :

@Stateless(mappedName = ?)

If this doesn't work, you can use context.list("") to browse the jndi tree in order to see what remote EJB are deployed.

share|improve this answer
Yep, it's there: @Stateless(name = "TeacherManager", mappedName = "Uran_2.0-TeacherManager"). JNDI still looks for Uran_2/0-TeacherManager though. – suszterpatt Oct 28 '10 at 14:18
then lookup for "Uran_2\\.0-TeacherManager" – h3xStream Oct 28 '10 at 14:25
that gives: javax.naming.NameNotFoundException: While trying to lookup 'Uran_2.0-TeacherManager#hu.elte.pgy2.BACNAAI.UranEJB.TeacherManager' didn't find subcontext 'Uran_2.0-TeacherManager#hu'. Resolved '' [Root exception is javax.naming.NameNotFoundException: While trying to lookup 'Uran_2.0-TeacherManager#hu.elte.pgy2.BACNAAI.UranEJB.TeacherManager' didn't find subcontext 'Uran_2.0-TeacherManager#hu'. Resolved '']; remaining name 'Uran_2/0-TeacherManager#hu/elte/pgy2/BACNAAI/UranEJB/TeacherManager'. Slightly better, but not quite there yet. – suszterpatt Oct 28 '10 at 16:00
the part "#hu/elte..." is probably optional (I don't know if you still include it like in the question). I have no idea what could fix it if you escape the dot. Here is a reference that mention the dot problem : publib.boulder.ibm.com/infocenter/wasinfo/v6r1/topic/…. – h3xStream Oct 29 '10 at 14:00
also did the jndi browsing list the name you are looking for.. – h3xStream Oct 29 '10 at 14:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.