I have just started reading HFSJ book for scwcd exam.
In which directory should i store the image files of my html file.
I have installed the tomcat and set the classpaths accordingly [its running], i have placed my test.html file in ROOT directory and than accessed it via.
the form and the messages are showing up but the picture is not showing, i guess there is a particular directory where i should put the images, but the tomcat test page is accessing the tomcat.gif from the same page???
i have used this html code for the image
any idea ???
regards,
rafi
The Directory Structure is:
D:\tomcat\Tomcat 5.5\webapps\ROOT
my both test.html & abc.jpg is stored in ROOT directory.
here is the code
if i double click on the file from ROOT directory than it will display the picture,
else if i run the file via http://localhost:8080/test.html than the picture will now show, but the rest of the form will show (just the picture will now show).
regards,
Rafi
This message was edited 1 time. Last update was at by Rafi Fareen
Ankur Jain Kothari
Ranch Hand
Joined: Feb 08, 2010
Posts: 152
posted
0
in the same dir as your html file....because you want them to be accessible by your clients directly without going through the DD....
Do What You Wanna Be....Taking Things The Way They Come
scjp 1.6 91 percent, scmad 90 percent(rounded off to nearest integer)
Swagato Bhatta wrote:Is your web app under /webapps/yourFolderName?
Then your image should be just in the same place.
However, I suggest you create a seperate forlder for images. And the refer to that folder image file....
Try it.. I am also new here..
that is what i have tried .... kept the picture in the same folder as test.html file [ROOT]. When i run the html file directly by double clicking than it will show the picture, but when i run it from http://localhost:8080/test.html than it displays everything else, but not the picture only.