External component (OOTB), downloading Static HTML in publisher. AEM6.3.0 | Community
Skip to main content
tushaar_srivastava
Level 6
May 19, 2020
Solved

External component (OOTB), downloading Static HTML in publisher. AEM6.3.0

  • May 19, 2020
  • 2 replies
  • 4134 views

Hi All,

 

I have an open regarding OOTB External component from General group, i am using AEM6.3.0

 

The requirement is I have to include a HTML file to a page, it's like using iframe. Since i am using AEM6.3.0, limited to use OOTB External component instead Embed component.

 

In Author, I can see my HTML file is loading and can see the content of HTML inside External component. i.e. in page source we can see, and can see the content in Author.

 

<div class="external parbase section"> <iframe src="/content/dam/www/public/us/en/include/html-include-iframe/index.html" width="100%" height="700"> </iframe>

 

 

But when I publish this page and in Publisher I can see that particular file (index.html) is downloading to my Local system. (download on each and every refresh/reload of page)

 

How should I stop this downloading that is happening only in publisher, and can see the content of the HTML file that is included into iframe/External component

 

Thanks

 

@kautuk_sahni  @arunpatidar  @vish.dhaliwal @17378738 @dan_klco 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Vijayalakshmi_S

Hi @tushaar_srivastava,

This downloading as attachment behavior is because of the header "Content-Disposition:attachment"

Per the screenshot you have shared, the html file (that you are trying to load inline in page) is available in DAM.

Look for the PID "com.day.cq.dam.core.impl.servlet.DamContentDispositionFilter" in OSGI components console and configure. (exclude text/html type - this header will not be added)

In 6.5.0, it is DAM Safe Binary Filter

2 replies

Ankur_Khare
Community Advisor
Community Advisor
May 19, 2020

Can you try to add some external url  before trying dam one.

https://google.com

Vijayalakshmi_S
Vijayalakshmi_SAccepted solution
Level 10
May 19, 2020

Hi @tushaar_srivastava,

This downloading as attachment behavior is because of the header "Content-Disposition:attachment"

Per the screenshot you have shared, the html file (that you are trying to load inline in page) is available in DAM.

Look for the PID "com.day.cq.dam.core.impl.servlet.DamContentDispositionFilter" in OSGI components console and configure. (exclude text/html type - this header will not be added)

In 6.5.0, it is DAM Safe Binary Filter