0
I have a web application on ASP.NET MVC
which is an intranet project. I would like to add some features to it to make it easier to work with Backup’s.
I already have one WIDNOWSFORMS APPLICATION
that performs the backups with user interaction and saves them on a server on the network. And also the same application only in the form of WINDOWS SERVICE
that automatically backups at a certain time and also saves them to a server on the network.
Each of the applications serves in a scenario, but what I want is: Integrate the Application ASP.NET MVC
for when, for example, I want to backup drivers of a particular machine of a user, I select this option in the WEB Application, it sends the message (Somehow to the machine, I think it can communicate with the service) and the machine does the Backup and saved on the server.
How can I do this, through WEB API, some other way ?
It’s all very abstract, I guess, but it’s a guess. You may have something to stop you depending on what you do, but you can’t answer it, you don’t know what you’re going to do. In the current form it is very difficult to answer.
– Maniero
@bigown what I’m looking for is the form of web app interaction with a service. An example is an antivirus. The person in the Web console gives the command to scan and Antivirus checks. What I want to know is how this communication happens.
– user37440