I have a "special question".
We have a public web-portal (accessible public over the internet).
The data (including images) are stored on an (internal) (MS)SQL-Server and the queried from the portal. The portal is running on an IIS (Visual Webgui -> AJAX).
In addition, a user of the webportal also can upload .pdf's with detail-descriptions.
These .pdf's are stored on a FileShare of the (internal) SQL-Server
On the portal, the .pdf's are loaded (streamed) directly from the FileShare on the SQL-Server (via File-Access).
We now create app's (Xamarin.Forms) to access the data over a (JSON) webservice.
=> This works nice (including load and show the images).
I now want, to enable the app also to load and show the .pfd's on the touch-devices.
As I don't want add this stuff to the webservice, search a way, to accces the .pdf's via uri from the apps.
So the problem is, that in don't know, how to make the share on the (internal) SQL-Server accessible in an easy (and secure) way from the internet.
Target (my cool Idea;-):
I have an url from the webporta, that is alleady accessible over the firewall - E.G. www.xx.ch
=> Now I search a "magic" way to enable the webserver to access the fileshare (internally) and add the "url" to the fileshare to the "space" of the webserver.
E.G. add url "documents" to the space of the webserver and the call uri:
"http://www.xx.ch/documents/xxx.pdf" from the app.
Does someone know hat to do that (or something similar:-)?
Thanks a lot for any feedback. Fredy
e