vote up 0 vote down star

I'm trying to access a remote ejb which is not available yet. But the lookup takes 5 min before I get the NameNotFoundException. Is there a way I can set the lookup timeout to a lesser value so that the client application doesn't hang for 5 mins? Thanks in advance...

flag
What application server are you using? – smink Nov 5 '08 at 17:59

2 Answers

vote up 1 vote down

Do the lookup in another thread, so that the client GUI does not hang. You can use plain Runnable to do this, or try a better option like swingworker.

To customize the JNDI lookup timeout, I am afraid, you will have to hack the internals of an open source app server, if that is an option.

link|flag
Thanks a lot Swapnonil. I'm using jboss so I was able to specify lookup timeouts in there. That worked :) – Sridhar Nov 11 '08 at 15:53
vote up 0 vote down

Hi Sridhar,

Can you provide how you could do this in Jboss

link|flag

Your Answer

Get an OpenID
or

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