Jpeg images from CMS are not displayed on jsf dialogs when using IE (Internet Explorer 11 and AxonIvy6.6). e.g <h:graphicimage name="/images/Sonne" library="ivy-cms" width="300"/>

This is not a problem with png images from cms, not if the jpeg images come from the webcontent folder and also not if other browsers like Firefox or Chrome are used.

Any recommendations?

asked 08.06.2017 at 08:36

Bruno%20B%C3%BCtler's gravatar image

Bruno Bütler
56181318
accept rate: 68%


The reason for that is a new Http Header Setting that is now set to true by default in the tomcat WEB-INF/web.xml file in the designer and in the engine.
So if you want to be compatible with older ivy versions you can switch of this additional header setting:

    <init-param>
        <param-name>blockContentTypeSniffingEnabled</param-name>
        <param-value>false</param-value>
    </init-param>
link

answered 08.06.2017 at 08:48

Bruno%20B%C3%BCtler's gravatar image

Bruno Bütler
56181318
accept rate: 68%

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "Title")
  • image?![alt text](/path/img.jpg "Title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×79
×26

Asked: 08.06.2017 at 08:36

Seen: 1,953 times

Last updated: 08.06.2017 at 08:48