没有MediaTypeFormatter可用' text / html'

时间:2014-08-07 13:55:02

标签: c# asp.net-web-api

我编写了一个ServiceHelper类,它将帮助POST到C#Web API控制器

public class ServiceHelper<TResponse, TRequest> : IServiceHelper<TResponse, TRequest>
{
    public TResponse Execute
        (
        string endpoint, 
        string controller, 
        string action, 
        TRequest request,
        string format = "application/json"
        )
    {
        using (var httpClient = new HttpClient())
        {
            httpClient.BaseAddress = new Uri(endpoint);
            httpClient.DefaultRequestHeaders.Accept.Clear();
            httpClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue(format));

            var response = httpClient.PostAsJsonAsync(String.Format("{0}/{1}", controller, action),
                request).Result;

            return response.Content.ReadAsAsync<TResponse>().Result;
        }
    }
}

我一直在

Additional information: No MediaTypeFormatter is available to read an object of type 'ReadMotorVehiclesWorkflowResponse' from content with media type 'text/html'.

有关如何解决此问题的任何想法?

2 个答案:

答案 0 :(得分:7)

显然,服务器返回您期望JSON的HTML,显然无法从HTML反序列化TResponse ...

我怀疑服务器实际上是在返回错误代码,而HTML只是错误的直观表示。

您应该致电response.EnsureSuccessStatusCode()以确保响应显示成功(通常为200 OK)。如果情况并非如此,则会引发异常。

答案 1 :(得分:3)

好的,问题是应用程序池的.NET版本设置为2.0版,而Web API是为.NET 4.0编写的,我更改了版本,现在它按预期工作。

值得注意的是,如下面的答案所述,最好拨打response.EnsureSuccessStatusCode()