Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WCF service error 400 bad request

I've been searching this problem, and I found similar problems posted by other users, but everything I've tried doesn't work, The problem is that I'm using a WCF service hosted on IIS, and a client that try to upload a serialized image on a string, the size of the image is 9mb aprox, everythin else works fine, I can send data without problem except the image.

I have enabled tracelog and the error message says that the MaxReceivedMessageSize exceed

Here is my config on service:

<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>

And the client config

<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>
like image 385
MaxJRB Avatar asked Oct 05 '22 08:10

MaxJRB


1 Answers

In your config file you have not assigned the binding configuration you created, so the default values for BasicHttpBinding are being used. You need to explicitly assign the binding you defined (BasicHttpBinding_IServicioSalud) to your endpoint, like this:

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

Do this for your service config, as the service needs to be set to accept larger data.

like image 130
Tim Avatar answered Oct 12 '22 14:10

Tim