How to set
favicon for analytics application deployed in OC4J (10.1.3.1.0)?
One way is to add reference to this WebMessage to dashboard and answers related WebMessages:
<WebMessage name="kmsgShortcutIcon">
<HTML>
<link type="image/x-icon" rel="shortcut icon" href="favicon.ico" />
</HTML>
</WebMessage>
But other web servers require just to add facivon.ico to application root folder, and it does not work for OC4J. A added
<mime-mapping>
<extension>ico</extension>
<mime-type>image/x-icon</mime-type>
</mime-mapping>
to web.xml in applications/analytics/analytics/WEB-INF folder and placed favicon.ico (16*16) to applications/analytics/analytics folder, added "image/x-icon ico" to j2ee/home/config/mime.types and it still does not work.