Page 1 of 1

download pdf document

Posted: Tue Nov 26, 2019 5:29 pm
by coater
I set GlobalCEFApp.DisablePDFExtension:=true;
I want to download pdf document but this showed in console:

jquery-1.9.1.js:14 Resource interpreted as Document but transferred with MIME type application/pdf:

if I canceled <GlobalCEFApp.DisablePDFExtension:=true;>
it will also show in console.

why this happened?
thank you!

Re: download pdf document

Posted: Wed Nov 27, 2019 1:53 pm
by salvadordf
That seems to be an error generated by a script in that web page and not in the web browser.

Use the TChromium.OnResourceResponse event and check the content-type header in the response parameter to download the PDF file with TChromium.StartDownload as you can see in this thread :
https://www.briskbard.com/forum/viewtopic.php?f=8&t=572

Re: download pdf document

Posted: Fri Nov 29, 2019 7:23 am
by coater
Thnak you! :D