Re: Displaying Images Dynamically using servlets

2001-04-10 Thread Alexander Fedorov
Hello Patwa, Tuesday, April 10, 2001, 3:57:43 PM, you wrote: PP> Enrique PP> Thanks for that , it worked PP> Is there something similar you can do for the upload. I am using the PP> MultipartParser by Oreilly to do the upload, again i am having to create the PP> file on my server before I ca

Re: Displaying Images Dynamically using servlets

2001-04-10 Thread Patwa Patwa
Enrique Ortiz Torrent <[EMAIL PROTECTED]> on 10/04/2001 11:53:55 Please respond to "A mailing list for discussion about Sun Microsystem's Java Servlet API Technology." <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] cc:(bcc: Parag Patwa/LON/WLB) Subject: Re: Displayi

Re: Displaying Images Dynamically using servlets

2001-04-10 Thread Enrique Ortiz Torrent
Hi we develop a servlet in order to send directly the image to the browser, here is the code : public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { ServletOutputStream html_out; java.lang.String query = SELECT IM

Displaying Images Dynamically using servlets

2001-04-10 Thread Patwa Patwa
Hi I have a servlet which reads image data from a database and displays the image on the clients browser. Now in order for this to happen I am having to create the image as as file on my server and then have a url which refers to the image file on the server to display it. Is there any way I do t