I have a WCF Web MEthod that takes an XElement object as a parameter. For one of my XML files (600 KB or so), this works fine, however, for this larger XML file (about 5 MB) I immediately get a CommunicationException message.
I have already increased the message sizes for my binding. The following is the ServiceModel section of my web.config:
<system.serviceModel> <behaviors> <serviceBehaviors> <behavior name="BIMIntegrationWS.metadataBehavior"> <serviceMetadata httpGetEnabled="true" /> <serviceDebug includeExceptionDetailInFaults="true" /> </behavior> <behavior name=""> <serviceMetadata httpGetEnabled="true" /> <serviceDebug includeExceptionDetailInFaults="false" /> </behavior> </serviceBehaviors> </behaviors> <bindings> <customBinding> <binding name="BIMIntegrationWS.IntegrationService.customBinding0" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:10:00"> <binaryMessageEncoding> <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" /> </binaryMessageEncoding> <httpTransport maxBufferPoolSize="2147483647" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647" /> </binding> </customBinding> </bindings> <serviceHostingEnvironment aspNetCompatibilityEnabled="true" /> <services> <service name="BIMIntegrationWS.BIMIntegrationWS" behaviorConfiguration="BIMIntegrationWS.metadataBehavior"> <endpoint address="" binding="customBinding" bindingConfiguration="BIMIntegrationWS.IntegrationService.customBinding0" contract="BIMIntegrationWS.IBIMIntegrationService" /> <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /> </service> </services> </system.serviceModel>
On the client, my ClientConfig looks like this:
<system.serviceModel> <bindings> <customBinding> <binding name="CustomBinding_IBIMIntegrationService"> <binaryMessageEncoding /> <httpTransport maxReceivedMessageSize="2147483647" maxBufferSize="2147483647" /> </binding> </customBinding> </bindings> <client> <endpoint address="http://localhost:1895/IntegrationService.svc" binding="customBinding" bindingConfiguration="CustomBinding_IBIMIntegrationService" contract="BIMIntegrationService.IBIMIntegrationService" name="customBindingEndpoint" /> </client> </system.serviceModel>
Thanks in advance!
source share