Download a pdf from a WEB application to a desktop application, in C # [closed]

0

I have to do a job for college using C #, with Visual Studio, where a user accesses a web application, uploads a file, and sends it to a remote desktop machine and saves it to a specific folder.

I will use ASP.NET MVC in creating the WEB application. My question is, how can I do that this file is sent to a remote computer, selected by the user, and saved in a folder?

I thought of using a desktop application on the remote machine, which would receive this request and save the file in the folder, what is the best type of desktop project I should develop for that specific case?

Thank you in advance.

    
asked by anonymous 06.10.2016 / 21:13

1 answer

2

Your question is too broad ........

You can create your web application to upload files to a web server.

The second part would be windows service , which would run in the background just as you specified, it would suffice for it to have access to the folder on the web server and to download the files to its specified folder.

Here has a good example of the type of application.

    
06.10.2016 / 21:44