WCF服务错误400错误请求

Max*_*JRB 5 service wcf 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>
Run Code Online (Sandbox Code Playgroud)

和客户端配置

<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>
Run Code Online (Sandbox Code Playgroud)

Tim*_*Tim 4

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

<endpoint address="" bindingConfiguration="BasicHttpBinding_IServicioSalud" binding="basicHttpBinding" contract="IServicioSalud" />
Run Code Online (Sandbox Code Playgroud)

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