I understand that it is possible to embed a PDF that is located on the server (ex: <object data="pdf/Test.pdf"/>
however is it possible to somehow embed a PDF that's located within the filesystem?
ex: <iframe src="\\filesystem\some\where\in\here\pdf.pdf"></iframe>
If not are there any tricks to doing so?
Check out my previous answer, instead of sending image data you can send
pdf
data to display. It is implemented using servlet.Example:
Take reference from my previous answer to know how to send file data from
YourServletClass
servlet.