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

I'm using Glassfish 3 and Eclipse as my IDE.

In my current application I developed a small file upload feature which saves the files in WebContent. I know it is a bad practice because I'm loosing all the files on every redeploy and so one but please bare with me.

The file is saved at:

E:\java\server\Glassfish3\glassfish\domains\domain1\eclipseApps\myApp\upload\story\79.png

Than I try to list render that picture in my .xhtml file using:

<img src = "upload/story/79.png" />

Weirdly enough, on the Servlet side (or ManagedBean in my case) when deciding if the image exists or notit all looks fine and the image is found on the disk. However, in the browser the image is not displayed because it fails to load the given URL.

How can i solve this problem?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.