Hi,
I'm testing the PDF Signature demo shown in this Telerik example PDF Signature demo. The issue I'm having is I cannot pull a pdf that resides on a network file server where we store all common files. I have no issues loading a pdf on my localhost machine.
From what I can tell, the issue appears to be the third party opensource pdf.js file Telerik is using in demo that seems confined to only load pdf's from directories within the web application and it's sub-folders defined in IIS for the website. Also, the network file server is used everywhere within our web application so it's not a security issue.
The error I get from pdf.js is "Not allowed to load local resource" which results in page prompt "PDF file fails to process." display.
We have an existing web.config entry that looks like this:
<add key="AttachmentsShare" value="\\my_file_server\file"/>
I've tried calling the file server a few different ways with no luck.
RadPdfViewer1.PdfjsProcessingSettings.File = ConfigurationManager.AppSettings("AttachmentsShare") & "1234.pdf"
RadPdfViewer1.PdfjsProcessingSettings.FileSettings.Url = ConfigurationManager.AppSettings("AttachmentsShare") & "1234.pdf"
Please advise. Thanks.