I have a REST-like web service that is deployed on Tomcat. There is no HTML in my servlet response; it's XML. I'd like to use my own favicon.ico instead of the Tomcat default.
If I place the file at webapps/myWebApp/favicon.ico, it doesn't load. I still get the Tomcat default. Going to http://localhost/myWebApp/favicon.ico shows that the file is indeed in place.
If I replace the file at webapps/ROOT/favicon.ico, then I get my new favicon. This isn't ideal because I'd like to package the favicon.ico in my war file and ideally wouldn't want other web apps to use my favicon.ico anyways.
Is there a better way to get my new favicon recognized?
For the record, I'm using Tomcat 7 and between each test, I restart Tomcat, clear my browser cache, and restart my browser.
/favicon.ico) or via links in the HTML header (which XML can't handle). To get rid of the Tomcat favicon, you might be able to get rid of the ROOT webapp altogether (if it's not needed). – Bruno May 14 '12 at 21:54