I'm going from Java to C# / Asp.NET for a project. As far as I can see the syntax is very close to java. But I have a few questions to get me starting. I want to create a web-page as a front end. This front end should be able to upload files, when a new file upload is initiated a local application takes over, processing the file trough several different programs.
But I'm a bit confused as to how I will achieve communication between the local "control program" and the web-page running on the webserver. The application will run on the same machine as the web-server. But how would you go about communication between the application and the web-server?
User uploads a file from website -> (Website notifies local app that a new file is added (this is the confusing part) -> Processes the file and sends a confirmation to the webpage / database once it's done.
I just need something to start reading. So any help is appreciated.