2

我知道这是一个多余的问题,当我上传超过 100 KB 的文件时出现错误。

远程服务器返回错误:(413)请求实体太大。

我将内容发布到 WCF 服务(64 位环境)。我知道这应该通过管理 maxReceivedMessageSize 和相关行为来解决,但不幸的是它没有。

以下是我的配置:-

客户

     <binding allowCookies="false" bypassProxyOnLocal="false" closeTimeout="00:01:00" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="2147483647" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647" messageEncoding="Text" name="BasicHttpBinding_ICandidateManagementService" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:11:00" textEncoding="utf-8" transferMode="Streamed" useDefaultWebProxy="true">
          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647"
           maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
          <security mode="None">
          <transport clientCredentialType="None" proxyCredentialType="None" realm=""/>
            <message algorithmSuite="Default" clientCredentialType="UserName"/>
          </security>
        </binding>

 <behavior name="CandidateBehavior">
          <dataContractSerializer maxItemsInObjectGraph="2147483647" />
        </behavior>

<endpoint address="http://localhost:62368/CandidateManagementService.svc" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_ICandidateManagementService" contract="MMJ.ServiceContracts.ServiceContract.ICandidateManagementService" name="BasicHttpBinding_ICandidateManagementService" behaviorConfiguration="CandidateBehavior" />

服务

<services>
      <service name="BasicHttpBinding_ICandidateManagementService" behaviorConfiguration="CandidateBehavior">
        <endpoint contract="MMJ.ServiceContracts.ServiceContract.ICandidateManagementService" binding="basicHttpBinding" address="" bindingConfiguration="BasicHttpBinding_ICandidateManagementService"/>
      </service>

我可能已经看到了所有可用的东西,但仍然无法解决这个问题。也尝试过使用下面的配置,但仍然没有改变......

<serverRuntime uploadReadAheadSize="500000000" maxRequestEntityAllowed="500000000"/>

请帮忙!

服务绑定配置(与客户端相同)

<binding allowCookies="false" bypassProxyOnLocal="false" closeTimeout="00:01:00" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="2147483647" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647" messageEncoding="Text" name="BasicHttpBinding_ICandidateManagementService" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:11:00" textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true">
          <readerQuotas maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxDepth="32" maxNameTableCharCount="2147483647" maxStringContentLength="2147483647"/>
          <security mode="None">
            <transport clientCredentialType="None" proxyCredentialType="None" realm=""/>
            <message algorithmSuite="Default" clientCredentialType="UserName"/>
          </security>
        </binding>

为了在下面提供更多见解,提琴手发现:-

请求计数:1 发送字节:85,719(标头:697;正文:85,022) 接收字节:10,129(标头:254;正文:9,875)

4

3 回答 3

3

经过一番努力,我的问题终于解决了。我的服务配置有一个缺陷,它没有给我任何运行时或编译时错误,因为它甚至没有识别配置。

我的服务配置是:-

<services>
      <service name="BasicHttpBinding_ICandidateManagementService" behaviorConfiguration="CandidateBehavior">
        <endpoint contract="MMJ.ServiceContracts.ServiceContract.ICandidateManagementService" binding="basicHttpBinding" address="" bindingConfiguration="BasicHttpBinding_ICandidateManagementService"/>
      </service>

我的“名称”属性不是我的服务的完全限定名称,因此甚至没有考虑我使用的配置,因此 maxReceivedMessageSize 采用默认的 65KB。

我已经更新了它,它的工作就像一个魅力。

<services>
  <service name="MMJ.Services.CandidateManagementService">
    <endpoint contract="MMJ.ServiceContracts.ServiceContract.ICandidateManagementService" binding="basicHttpBinding" address="" bindingConfiguration="BasicHttpBinding_ICandidateManagementService"/>
  </service>

另外,请查看此帖子以获取更多参考。我知道这是一个愚蠢的错误,并感谢大家努力修复。

于 2013-03-13T11:24:50.003 回答
1

您将数据发布到服务器,因此更新客户端设置无济于事。接收大消息的不是客户端,而是服务器。

于 2013-03-11T14:10:52.603 回答
0

查看您的客户端端点:

bindingConfiguration 不应该是

bindingConfiguration="BasicHttpBinding_ICandidateManagementService"

代替

bindingConfiguration="BasicHttpBinding_IAdminService"
于 2013-03-11T19:40:03.610 回答