I have a WEB application in ASP.NET MVC
which is an intranet project. I would like to add some functionality in it to make it easier to work with Backup's.
I already have a WIDNOWSFORMS APPLICATION
that executes user-aware backups and saves them to a server on the network. And also the same application only in the form of WINDOWS SERVICE
which makes the backups automatically at a certain time and also saves them to a server on the network.
Each of the applications serves in one scenario, but what I'm wanting is: Integrating the Application ASP.NET MVC
to when, for example, I want to back up drivers of a certain machine from a user, I select this option in the Application WEB, it sends the message (Somehow to the machine, I think it can communicate with the service) and the machine does the Backup and saves it on the server.
How can I do this, via WEB API, some other way?