How to respond to HTTP GET with c#/.net and XML
What I am trying to is when another service call posts to a get with say 5 parameters. This service would respond with an appropriate xml file.
Is WCF the way to go?
Any good examples out there?
Is this way easier/faster on some other platform?
One very easy option is to simply host an ASP.NET MVC web application … you can have an action method that maps to the URL you are interested in which would take the parameters and return the XML:
http://asp.net/mvc