I have a controller that serves as webservice.
I want to debug the following method:
public ActionResult CreateVar(string clientId, string signature, string timestamp)
Because it’s a controller and not WCF, and also it’s a POST and not GET – I cannot invoke it simply.
How can I invoke it for debugging, perhaps through fiddler?
Use MVC.ApiExplorer. The tool automatically generates test page which lists all your actions of controller. I’ve used it while I was working with others on an asp.net MVC project.