This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Servlets and the fly likes Image display in websphere4.0 Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "Image display in websphere4.0" Watch "Image display in websphere4.0" New topic
Author

Image display in websphere4.0

sorupa
Greenhorn

Joined: Dec 07, 2001
Posts: 4
i'm trying to run my application in websphere4.0.
application is running.But the images are not loaded in my application.
Images are in Images folder.
calling my image is (/images/ss.gif).
But it's not able to show the image.if i calling the image using context root (ctx/images/ss.gif).
the image is loaded.what's solution for loading the image without using context root.
pls send me the answer.
James Carman
Ranch Hand

Joined: Feb 20, 2001
Posts: 580
Originally posted by subasorupa:
i'm trying to run my application in websphere4.0.
application is running.But the images are not loaded in my application.
Images are in Images folder.
calling my image is (/images/ss.gif).
But it's not able to show the image.if i calling the image using context root (ctx/images/ss.gif).
the image is loaded.what's solution for loading the image without using context root.
pls send me the answer.

How are you wanting to "show" the images? Are you trying to find out how to construct a URL for the <img> tag's href attribute? Try...
request.getContextPath() + "/images/ss.gif"
Or, you could use the Struts <html:img> tag, which will do this for you automagically.


James Carman, President<br />Carman Consulting, Inc.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Image display in websphere4.0
 
Similar Threads
Image not getting displayed
file access in web application
JSP not getting rendered
Deploying MyApp as default application on JBoss server
Images not displaying using JSF?