> I am having a problem downloading a jpeg file from a tomcat java
servlet
> to Internet Explorer 6.0.  I have changed the file extension to "zzz"
to
> force the download prompt.     If I restart tomcat(version 4.1.x), the

While this is a working solution, it's not ideal.  To do this
seamlessly, you should set your output headers to a different mime type.
"application/octet-stream" works well for provoking a download dialog.

Here's an example:
response.setContentType("application/octet-stream");


B.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to