I have very little experience in ASP.NET, so sorry for maybe easy question.
I need to upload a file from a WinForms application to a server, where the file will be automatically processed and saved to a database, without any other user interaction on the server.
I don't have any physical server, all will run on a shared webhosting with ASP.NET in Medium Trust enviroment.
What do I need to have running on the web server? Is it a WebService? I simply don't know where to start and what to look for.
I understand how it could be done with user's interaction:
- User goes to our web pages
- Click on "Upload" button
- Select the file on a hard drive
- Click OK, I will catch this event in ASP.NET, upload the file and save it to the database.
When there will be no web page and no user interaction, I have no events on the server that I could use to receive the file and save it on the server.
Perhaps this is an easy task, but I just have no experience with this.
Thanks for all comments, Petr