72

这是这种情况:

它们是Servoy中的外部 Web服务,我想在 ASP.NET MVC 应用程序中使用此服务。

使用此代码,我尝试从服务中获取数据:

HttpResponseMessage resp = client.GetAsync("http://localhost:8080/servoy-service/iTechWebService/axws/shop/_authenticate/mp/112818142456/82cf1988197027955a679467c309274c4b").Result;
resp.EnsureSuccessStatusCode();

var foo = resp.Content.ReadAsAsync<string>().Result;

但是当我运行应用程序时,我得到下一个错误:

没有 MediaTypeFormatter 可用于从媒体类型为“text/plain”的内容中读取“String”类型的对象。

如果我打开 Fiddler 并运行相同的 url,我会看到正确的数据,但内容类型是 text/plain。但是我在 Fiddler 中也看到了我想要的 JSON ......

是否可以在客户端解决这个问题,或者是 Servoy 网络服务?

更新:
使用 HttpWebRequest 而不是 HttpResponseMessage 并使用 StreamReader 读取响应...

4

3 回答 3

125

尝试改用 ReadAsStringAsync()。

 var foo = resp.Content.ReadAsStringAsync().Result;

ReadAsAsync<string>()它不起作用的原因是因为ReadAsAsync<>会尝试使用默认值之一MediaTypeFormatter(即JsonMediaTypeFormatter, XmlMediaTypeFormatter, ...)来读取带有content-typeof的内容text/plain。但是,没有一个默认格式化程序可以读取text/plain(它们只能读取application/json,application/xml等)。

通过使用ReadAsStringAsync(),无论内容类型如何,内容都将被读取为字符串。

于 2012-10-03T23:04:09.753 回答
5

或者您可以创建自己的MediaTypeFormatter. 我用这个text/html。如果你添加text/plain到它,它也会为你工作:

public class TextMediaTypeFormatter : MediaTypeFormatter
{
    public TextMediaTypeFormatter()
    {
        SupportedMediaTypes.Add(new MediaTypeHeaderValue("text/html"));
    }

    public override Task<object> ReadFromStreamAsync(Type type, Stream readStream, HttpContent content, IFormatterLogger formatterLogger)
    {
        return ReadFromStreamAsync(type, readStream, content, formatterLogger, CancellationToken.None);
    }

    public override async Task<object> ReadFromStreamAsync(Type type, Stream readStream, HttpContent content, IFormatterLogger formatterLogger, CancellationToken cancellationToken)
    {
        using (var streamReader = new StreamReader(readStream))
        {
            return await streamReader.ReadToEndAsync();
        }
    }

    public override bool CanReadType(Type type)
    {
        return type == typeof(string);
    }

    public override bool CanWriteType(Type type)
    {
        return false;
    }
}

最后,您必须将其分配给该HttpMethodContext.ResponseFormatter属性。

于 2018-02-27T12:47:00.693 回答
5

我知道这是一个较老的问题,但我觉得t3chb0t的答案让我找到了最好的方法,并且想分享。你甚至不需要去实现所有格式化程序的方法。我对我正在使用的 API 返回的内容类型“application/vnd.api+json”执行了以下操作:

public class VndApiJsonMediaTypeFormatter : JsonMediaTypeFormatter
{
    public VndApiJsonMediaTypeFormatter()
    {
        SupportedMediaTypes.Add(new MediaTypeHeaderValue("application/vnd.api+json"));
    }
}

可以像下面这样简单地使用:

HttpClient httpClient = new HttpClient("http://api.someaddress.com/");
HttpResponseMessage response = await httpClient.GetAsync("person");

List<System.Net.Http.Formatting.MediaTypeFormatter> formatters = new List<System.Net.Http.Formatting.MediaTypeFormatter>();
formatters.Add(new System.Net.Http.Formatting.JsonMediaTypeFormatter());
formatters.Add(new VndApiJsonMediaTypeFormatter());

var responseObject = await response.Content.ReadAsAsync<Person>(formatters);

超级简单,完全符合我的预期。

于 2020-08-08T17:33:42.460 回答