I have image Tag in XHTML(JSF) Page, the source for the image is reference to local image file i.e (c:\test.png), and my application server is JBOSS 7.1, the problem is the image dose not display I used the file protocol but still it dose not display my tag as the following.
<img width="200" height="200" src="file:///C:/images/003.jpg" /> But in my java code I can access the image by code, and if I write spectated HTML PAGE i.e (No application server no JSF page pure html) the
<img width="200" height="200" src="file:///C:/images/003.jpg" /> Works in pure HTML.
Any idea why is not work.