Following is my problem scenario.
I have an ip address 1.2.3.4
My client will make a webrequest like : http://1.2.3.4/aaa&bbb&ccc
I need to capture this request and instead of serving a web page I want to do something with the "aaa&bbb&ccc" part.
This process will keep looping.
I know how to host a website or a web service on IIS. My confusion is, how do I receive the request on my IP and instead of serving a webpage, just eat it up and 'digest' it. I will have IIS 7 as the web server and ASP.Net/C# as my dev environment.
How do I do this? (Would using a RESTFull ASP web service be a good practice?)
Sincere thanks and regards.