WCF服务错误400错误请求

时间:2013-04-19 20:03:31

标签: wcf service request

我一直在搜索这个问题,我发现其他用户发布了类似的问题,但我尝试的一切都不起作用,问题是我使用的是IIS上托管的WCF服务和客户端试图在字符串上上传一个序列化的图像,图像的大小是9mb aprox,其他一切正常,我可以发送没有问题的数据,除了图像。

我启用了tracelog,错误消息显示MaxReceivedMessageSize超过

这是我的服务配置:

<system.diagnostics>
<sources>
    <source name="System.ServiceModel"
        switchValue="Information, ActivityTracing"
        propagateActivity="true" >
        <listeners>
            <add name="xml"/>
        </listeners>
    </source>
    <source name="System.ServiceModel.MessageLogging">
        <listeners>
          <add name="xml"/>
        </listeners>
    </source>
    <source name="myUserTraceSource"
        switchValue="Information, ActivityTracing, All">
        <listeners>
            <add name="xml"/>
        </listeners>
    </source>
</sources>
<trace autoflush="true"  />
<sharedListeners>
  <add name="xml"
       type="System.Diagnostics.XmlWriterTraceListener"
       initializeData="ErrorSvcLog.svclog" />
</sharedListeners>
</system.diagnostics>

<system.serviceModel>
    <bindings>
        <basicHttpBinding>
            <binding name="BasicHttpBinding_IServicioSalud" closeTimeout="10:01:00" 
                maxBufferSize="2147483647" maxBufferPoolSize="2147483647" 
                maxReceivedMessageSize="2147483647" openTimeout="10:01:00"
                receiveTimeout="10:10:00" sendTimeout="10:01:00"
                messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered">
                <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
                    maxArrayLength="2147483647" maxBytesPerRead="2147483647" 
                    maxNameTableCharCount="2147483647" />
            </binding>
        </basicHttpBinding>
</bindings>
<services>
    <service behaviorConfiguration="ServiceBehavior" name="ServicioSalud">
        <endpoint address="" binding="basicHttpBinding" contract="IServicioSalud" />
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
    </service>
</services>
<behaviors>
    <serviceBehaviors>
        <behavior name="ServiceBehavior">
            <serviceMetadata httpGetEnabled="true" />
            <serviceDebug includeExceptionDetailInFaults="true" />
            <dataContractSerializer maxItemsInObjectGraph="200000" />
        </behavior>
    </serviceBehaviors>
</behaviors>
<diagnostics>
    <messageLogging
        logEntireMessage="true"
        logMalformedMessages="false"
        logMessagesAtServiceLevel="true"
        logMessagesAtTransportLevel="false"
        maxMessagesToLog="3000"
        maxSizeOfMessageToLog="2000"/>
</diagnostics>
</system.serviceModel>
</configuration>

客户端配置

<system.serviceModel>
    <bindings>
        <basicHttpBinding> 
            <binding name="BasicHttpBinding_IServicioSalud" closeTimeout="10:01:00"
                openTimeout="10:01:00" receiveTimeout="10:10:00" sendTimeout="10:01:00"
                allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
                maxBufferSize="2147483647" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647"
                messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
                useDefaultWebProxy="true" 
                <readerQuotas maxDepth="32" maxStringContentLength="2147483647" maxArrayLength="2147483647"
                    maxBytesPerRead="4096" maxNameTableCharCount="2147483647" />
                <security mode="None">
                    <transport clientCredentialType="None" proxyCredentialType="None"
                        realm="" />
                    <message clientCredentialType="UserName" algorithmSuite="Default" />
                </security>
            </binding>
        </basicHttpBinding>
    </bindings>
    <client>
        <endpoint address="http://xxx.xxx.x.xxx:xxxx/wcfservicesalud/Service.svc"
            binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IServicioSalud"
            contract="IServicioSalud" name="BasicHttpBinding_IServicioSalud" />
    </client>
</system.serviceModel>

3 个答案:

答案 0 :(得分:4)

在配置文件中,您尚未分配您创建的绑定配置,因此正在使用BasicHttpBinding的默认值。您需要明确地将您定义的绑定(BasicHttpBinding_IServicioSalud)分配给您的端点,如下所示:

<endpoint address="" bindingConfiguration="BasicHttpBinding_IServicioSalud" binding="basicHttpBinding" contract="IServicioSalud" />

为服务配置执行此操作,因为需要将服务设置为接受更大的数据。

答案 1 :(得分:0)

这是我的版本。确保您在所需的服务中指定了 bindingConfiguration 。在我的情况下,我必须指定名称​​ basicHttpBinding

<bindings>
   <basicHttpBinding>
    <binding name="basicHttpBinding" maxBufferSize="64000000" maxReceivedMessageSize="64000000" maxBufferPoolSize="64000000">
      <readerQuotas maxDepth="64000000" maxStringContentLength="64000000" maxArrayLength="64000000" maxBytesPerRead="64000000" />
      <security mode="None"/>
    </binding>
    </basicHttpBinding>
</bindings>


<services>
      <service behaviorConfiguration="WS.Service1Behavior" name="WS.EasyStockWS">
        <endpoint address="" binding="basicHttpBinding" bindingConfiguration="basicHttpBinding" contract="WS.IEasyStockWS">
          <identity>
            <dns value="localhost" />
          </identity>
        </endpoint>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
      </service>
</services>

答案 2 :(得分:0)

对我来说,原因是我的请求中没有设置内容类型。