1

我的一个 WCF 服务有一个以大文件作为参数的操作合同。因此,当客户端尝试发送此信息时,我遇到了一个异常,当我查看服务器跟踪时,这就是我所看到的:

MESSAGE:已超出传入邮件的最大邮件大小配额 (65536)。要增加配额,请在适当的绑定元素上使用 MaxReceivedMessageSize 属性。

我为我的 WCF 服务使用了默认的简化配置,因此添加了一个新的服务定义,如下所示:

<system.serviceModel>
<services>
  <service name="MyNamespace.MyService">
    <endpoint address="MyService.svc"
      binding="basicHttpBinding" bindingConfiguration="basicHttp"
      contract="MyNamespace.IMyService" />
  </service>
</services>
<bindings>
  <basicHttpBinding>
    <binding name="basicHttp" allowCookies="true"
             maxReceivedMessageSize="10485760"
             maxBufferSize="10485760"
             maxBufferPoolSize="10485760">
      <readerQuotas maxDepth="32"
           maxArrayLength="10485760"
           maxStringContentLength="10485760"/>
    </binding>
  </basicHttpBinding>
</bindings>
<behaviors>
  ...
</behaviors>
<protocolMapping>
    ...
</protocolMapping>    

我使用服务的方式是,我有一个函数在我的帮助类中返回一个通道,我使用该通道来调用操作:

public static T CreateChannel<T>() where T : IBaseService
{
    System.ServiceModel.BasicHttpBinding binding= new System.ServiceModel.BasicHttpBinding();

    binding.TransferMode = TransferMode.Streamed;
    binding.Security = new BasicHttpSecurity() { Mode = BasicHttpSecurityMode.None };
    binding.MaxReceivedMessageSize = 10485760;
    binding.MaxBufferSize = 10485760;

    System.ServiceModel.ChannelFactory<T> cf2 = new ChannelFactory<T>(binding, 
             new System.ServiceModel.EndpointAddress(MyEndpointAddress)); //I checked this part, the address is correct.
    T Channel= cf2.CreateChannel();
    return Channel;
}

接着,

var businessObject = WcfHelper.CreateChannel<IMyService>();
var operationResult = await businessObject.MyOperationAsync(...);

尽管我的其他服务运行正常,但我在配置中定义的服务明确返回“没有端点监听...”的异常,我正在使用 IISExpress 在 VS2012 上开发。可能是什么问题,有什么建议吗?

4

1 回答 1

0

我认为传输模式不匹配。在客户端,您正在使用流式传输,而在服务器端,它不在配置中。此外,您指定了 10MB,这并没有那么高。

请访问以获取有关流媒体的更多信息。

编辑 :

如果您在 IIS 下托管,请同时检查(默认为 4Mb):

<system.web>    
    <httpRuntime maxRequestLength="4096 " />
</system.web>
于 2012-10-01T14:35:37.863 回答