Problem: The SVG image is not appearing on my HTML page after deploying the application on the server.
Situation: After investigating, I discovered that the issue is not with the browser, but rather with the server configuration. The mime type "image/svg+xml" is not properly set up for the ".svg" extension. When inspecting the element -> Network -> Logo.svg, the type appears as plain for the SVG image. On my local NetBeans server, it works fine and the type shows as SVG.
Question: Since I do not have admin rights to the server domain, how can I configure my code to display the SVG image at the project level? I tried adding MIME mapping in the web.xml of the project, but it did not resolve the issue. Are there any additional configurations needed to set up the MIME at the project level?
Server: Weblogic 10.3.6.0 (SOA 11g)