In your servlet you need to change the mime type to the proper type for your image. For example, for a PNG you would use:
response.setContentType("image/png")
where response is a javax.servlet.http.HttpServlteResponse (one of the parameters to doPost(), doGet() etc.)
You can find a partial list of mime types in ./server/default/deployers/jbossweb.deployer/web.xml (AS 5.1.0 location)