I need to do something fairly simple. I have a Windows Server on which I need to have a process, receiving HTTP requests (with parameters in GET mode).
These parameters are to be parsed, to then send back some XML to the user.
I’ve done such things fairly easily in Python, where I could basically map a procedure (its name was the suffix or the url, and parameters the arguments of a GET or POST method indifferently).
What’s the best way to achieve this in C# ?
Sounds to me like you want to setup an http reqest handler. If you however need to not use IIS you can setup an wcf get server WCF and HTTP GET