Have you thought of using a servlet mapped to the file you are working with (ie servlet mapping to *.jpg)? I haven't tried it, but in theory (this is how I would do it if I had to), the servlet would catch the request, access the info from the db and return the binary data. Since the client makes the request for images separate from the HTML page, you'll also have to include some info in the URL (GET request) for the image so the servlet knows which one to get.
Just a thought that might get you where you want to go. --David On Thursday 24 January 2002 11:25 am, you wrote: > Hello, > > Is there a way to display images from database blob fields within only > jsp, i know that it is impossible because of you can not handle an another > outputstream > within jsp. > > But this is a very critical for our application design. > > sincerely , > Ugur -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]>
