1

我已经创建了我的第一个 WCF Web 服务,并且我试图根据一些传递的参数从中返回一个图像。我收到错误消息:

响应消息的内容类型 image/jpeg 与绑定的内容类型 (text/xml; charset=utf-8) 不匹配。如果使用自定义编码器,请确保正确实现 IsContentTypeSupported 方法。

我需要做什么来解决这个问题?

我的网站调用该服务的 web.config 文件具有以下配置:

<system.serviceModel>
<bindings>
  <basicHttpBinding>
    <binding name="BasicHttpBinding_IRestImageService" />
  </basicHttpBinding>
</bindings>
<client>
  <endpoint address="http://localhost:59473/RestImageService.svc"
    binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IRestImageService"
    contract="RestImageService.IRestImageService" name="BasicHttpBinding_IRestImageService" />
</client>

网络服务 web.config 如下所示:

<system.serviceModel>
<behaviors>
  <serviceBehaviors>
    <behavior>
      <!-- To avoid disclosing metadata information, set the values below to false before deployment -->
      <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
      <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
      <serviceDebug includeExceptionDetailInFaults="false"/>
    </behavior>
  </serviceBehaviors>
</behaviors>
<protocolMapping>
  <add binding="basicHttpsBinding" scheme="https"/>
</protocolMapping>
<serviceHostingEnvironment aspNetCompatibilityEnabled="false" multipleSiteBindingsEnabled="true"/>

服务合同:

[OperationContract]
    [WebInvoke(Method = "GET",
        ResponseFormat = WebMessageFormat.Json,
        UriTemplate = "Image/{type}/{typeid}/{imageid}/{size}/{extension}",
        RequestFormat = WebMessageFormat.Json,
        BodyStyle = WebMessageBodyStyle.Wrapped)]
    Stream Image(string type, string typeid, string imageid, string size = "lrg", string extension = "jpg");

我在 WCF 很新,所以任何帮助/指针将不胜感激!

更新 实施蒂姆的建议后,我得到一个新的错误:

在 localhost:59473/RestImageService.svc 上没有可以接受消息的端点侦听。这通常是由不正确的地址或 SOAP 操作引起的。有关更多详细信息,请参阅 InnerException(如果存在)。

我不确定如何配置 Web 服务来解决此问题。有什么建议么?

这就是我访问网络服务的方式:

RestImageServiceClient client = new RestImageServiceClient();
    client.Image(WSC.Common.BO.User.User.ImageFolder.Buyer, "27085", "BuyerPhoto", "LRG", "jpg");

我希望能够将我的图像的 src 标记设置为 Web 服务 url 一旦我得到它工作。

4

1 回答 1

1

basicHttpBinding是 SOAP(1.1 版)。要启用基于 REST 的服务,我相信(我自己并没有做太多)您需要使用webHttpBinding.

我会尝试这样的事情。在您的服务的配置文件中,进行以下更改:

<protocolMapping>
  <add binding="webHttpBinding" scheme="http"/>
</protocolMapping>

应该将您的默认绑定配置为webHttpBinding用于http调用。

<behaviors>
  <endpointBehaviors>
    <behavior>
      <webHttp />
    </behavior>
  </endpointBehaviors>
  <serviceBehaviors>
    <behavior>
      <!-- To avoid disclosing metadata information, set the values below to false before deployment -->
      <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
      <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
      <serviceDebug includeExceptionDetailInFaults="false"/>
    </behavior>
  </serviceBehaviors>
</behaviors>

上面的代码应该webHttp.

最后,在您的客户端配置文件中,进行以下更改:

<client>
  <endpoint address="http://localhost:59473/RestImageService.svc"
            binding="webHttpBinding"
            contract="RestImageService.IRestImageService" 
            name="WebHttpBinding_IRestImageService" />
</client>

我不能肯定这会奏效,但我在 WCF 方面做了很多工作(在 SOAP 方面),所以我认为这至少会让您指向正确的方向。

编辑

RestImageServiceClient是一个 SOAP 客户端。要使用 REST 服务,您需要使用 HTTP API。这是 [WCF REST Service with JSON] http://www.codeproject.com/Articles/327420/WCF-REST-Service-with-JSON的示例):

WebClient client = new WebClient();
byte[] data = client.DownloadData("http://localhost:11523/Service1.svc/GetData");
Stream stream = new MemoryStream(data);

DataContractJsonSerializer obj = new DataContractJsonSerializer(typeof(string));
string result = obj.ReadObject(stream).ToString();

我建议在谷歌上搜索“WCF REST JSON 客户端示例”——你会得到很多点击和一些不同的方法来做到这一点。

作为补充说明,您可以使用您的 SOAP 客户端进行 SOAP 调用,只要您在服务上公开了一个 SOAP 端点。

于 2013-09-01T03:05:34.013 回答