


I am trying to open the PDFs in browser instead of downloading the PDF.
So far I have configured the ContentDispositionFilter with the below properties and it works perfectly fine.
{
"sling.content.disposition.paths": "/content/*:application/pdf",
"sling.content.disposition.all.paths": "false"
}
When I check the same functionality on AEM as Cloud I see the below additional headers are added and the PDF is downloaded.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Sign in to like this content
Total Likes
Hi @Asutosh_Jena_ ,
As per below link, Content disposition filter is not supported in AEMaaCS.
So set the disposition setting in dispatcher config.
<LocationMatch "\.(?i:pdf)$"> ForceType application/pdf Header set Content-Disposition inline </LocationMatch>
Hi @Asutosh_Jena_
I would suggest to check the dispatcher and apache config here.
You can remove this headers from dispatcher also.
For cached file I am not sure if publihser would remove those headers.
Views
Replies
Sign in to like this content
Total Likes
Hi @Asutosh_Jena_ ,
As per below link, Content disposition filter is not supported in AEMaaCS.
So set the disposition setting in dispatcher config.
<LocationMatch "\.(?i:pdf)$"> ForceType application/pdf Header set Content-Disposition inline </LocationMatch>
@Kishore_Kumar_ Thanks for the response. I was looking for any type of OSGi config without updating anything on the dispatcher but it does not look like an option in AEM as Cloud Service anymore!
Views
Replies
Sign in to like this content
Total Likes