WebApi needs to accept a URL in this format:
/controller/action;param1=value1
note the semicolon after the action. Semicolons are not allowed by .NET. Is there a way to use the rewrite rules in the web.config to change the url to this:
/controller/action?param1=value1
Go to the complete details ...