I\'m using ApiController and I can\'t get the call to return anything other than XML.
public class GuideController : ApiController { [AcceptVerbs(\"GET\")]
Try setting the Accept header in the client. If you want to receive JSON, set
Accept: application/json
in your client. Hope that helps.