RE: Image problem on tomcat

2007-07-03 Thread Propes, Barry L
maybe WAP browsers aren't configured to handle that extension? -Original Message- From: Zilberstein Yuval [mailto:[EMAIL PROTECTED] Sent: Thursday, June 28, 2007 11:13 AM To: Tomcat Users List Subject: Image problem on tomcat Hello all, I have an image problem on the Tomcat server. I hav

Re: Image problem on tomcat

2007-06-28 Thread Martin Gainty
Yuval-- from the Wireless Bitmap (WBMP) documentation "If "image/gif", "image/jpg" and "image/png" are found in the accept HTTP header, it means the WML browser can display the GIF, JPG and PNG image formats. so you'll need to convert from *ProprietaryFormat* to GIF 87a, GIF 89a (animated GIF)

Re: Image problem on tomcat

2007-06-28 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Yuval, Zilberstein Yuval wrote: > I am trying to display the image on a special mobile browser, by > requesting it from a jsp on the tomcat server, But the browser can not > display it. Does this image render properly on a "normal" web browser (like

Re: Image problem on tomcat

2007-06-28 Thread Jon Wingfield
Is it a mime-type issue? The content is probably being vended as application/octet-stream, which the mobile device is probably not liking. You can add additional mime-mappings into your web.xml. If you are fronting tomcat with apache httpd you can also add mime-mappings into the httpd.conf Jo