|
 |
Documentation
Kattare is dedicated to making your hosting experience as painless as possible. That means making as much help and documentation available as possible.
|
|
| Category |
| JSP-Java Servlets |
|
Question
|
Last Modified: Apr 14, 2006
|
| Firefox favicon.ico issue |
| Answer |
There is a known issue with Firefox and how works with java security.
Add an empty security constaint into your web.xml file for favicon.ico. Here is an example
<security-constraint>
<web-resource-collection>
<web-resource-name>Entire Application</web-resource-name>
<url-pattern>/favicon.ico</url-pattern>
</web-resource-collection>
</security-constraint>
By leaving the <auth-constraint> tag out, anyone is allowed to access this file.
|
[FAQ Main]
[Submit a Question]
[Back to Category "JSP-Java Servlets"]
|
|
 |