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 the problem, that getting a ressource from my archive failed with a MalformedURLException: unknown protocol: jndi

The archive is a war file and is deployed into Websphere successfully.

When I try to access some files inside the archive via

jndi://server/context/filename

I get the MalformedURLException.

share|improve this question
1  
showing us some code would be useful – skaffman Feb 9 '10 at 23:34
JNDI tutorial – McDowell Nov 25 '11 at 16:42

2 Answers

URLs with the "jndi" scheme are returned by the ServletContext#getResource method in Tomcat. However, this is non standard (i.e. the J2EE specs don't impose a URL scheme to be used in the return value of that method) and on other application servers it will be different. Always use the ServletContext#getResource method instead of trying to compose the URL directly.

share|improve this answer

Unless you registered a custom URL handler, "jndi" is not a supported protocol.

Are you trying to read the file through Java code?

share|improve this answer

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.