jamiekurtz / Mvc4ServicesBook

52 stars 60 forks source link

No Front End? #4

Closed RAGolko closed 11 years ago

RAGolko commented 11 years ago

I can't run the sample because I get a 404 not found... there is no front end to this or am I missing something? What's supposed to launch when you run the webapi project?

sukumarraju commented 11 years ago

Any tool that can make HTTP request is the client.

Any browser (IE, Firefox or Chrome) or Fiddler can invoke the service. Simple run the service and type the correct URI in the address bar to see the data or debug.

jamiekurtz commented 11 years ago

Yes, thank you sukumarraju. I didn't include any kind of real client code in the book source. But you can, as sukumarraju pointed out, use your browser to "see" the API. For example, you can set the startup project as the MVC4ServicesBook.Web.Api project, and then in the Project Properties -> Debug page, you can set the starting URL as something interesting - e.g. /api/categories.

I typically use the Chrome Advanced REST Client extension or Fiddler to experiment and test the various URLs and methods.