3

Where did the auto-generated test client go in ASP.NET Web API? (part of MVC 4 beta) In the WCF WebAPI it was in the global.asax:

var config = new HttpConfiguration() { EnableTestClient = true, EnableHelpPage=true };
RouteTable.Routes.MapServiceRoute<MyService>("api/path", config);
Eric Falsken
  • 4,796
  • 3
  • 28
  • 46

1 Answers1

8

The test client is not part of ASP.NET Web API Beta (we had to pull it out due to limited time and architectural changes in the internal implementation). We are looking at bringing it back in the next release.

marcind
  • 52,944
  • 13
  • 125
  • 111