loading images on remote system in jsp
In my current requirment i will upload a image to remote system .
example:
////xyz/testapp/ - remote system
current application in tomcat
webapps\testapp
If i upload 123.gif to "////xyz/testapp/ " path.later If i want to show this image in jsp file.
What are possiable solutions to achive this requirment.
Regards,
Raghu
# 2
i am already using commons for upload to remote syste.
My requirment is to display the uploaded images on remote system in jsp page.
In each jsp page there can be 10 images to be displayed one after the other.
# 3
Just show them using <img src> ?<img src="/webapp/images/foo.gif">
If the images are uploaded to a path outside the webcontainer, then you need to create kind of an ImageServlet.
Here you can find an example: http://balusc.xs4all.nl/srv/dev-jep-img.html