I am building a web app which works with XML files. One of the things the app needs to do is validate the XML files against specific schemas. For that, I am using an open source tool which runs using an .exe command, into which I pass in the schema file path and the XML file path, and it outputs messages.
I can get the validation tool running perfectly well if i just pass it a local file path for the XML file, but the XML files are held in an Azure DB. The best I can do is a https:// URL to the XML file.
With this in mind, and without going down the route of WebDavs or copying the file from the server, is there a simple way to get the data from the URL path and convert it into a file path that will be accepted by the .exe tool?