Show PDF on Inline Dialog on Android device (Chrome)
We are running 24.2.5 and have an application that has the ability to click a link that opens a PDF-file that is stored in the 19.16 database. This works like a charm in Chrome on Windows pc's, but we can't seem to get this to work for Google Chrome on an Android device.
When clicked on the link, the Inline Dialog is opened and the file is downloaded by an application process:
DECLARE
l_blob blob;
l_file varchar2(2000);
BEGIN
l_file := apex_application.g_x01;
select blob_content
into l_blob
from TEMP_BLOB_ARCHIVE
where filename = l_file;
apex_http.download(p_blob => l_blob,