0

I exposed BizTalk Orchestration as a WCF Service and getting "response: (413) Request Entity Too Large." for request larger than 1 MB. I added "bindings" tag to web.config of service as below but no luck.

<bindings>
       <basicHttpBinding>
                   <binding name="BasicHttpBinding_ITwoWayAsync" maxBufferPoolSize="2147483647" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647" >
                    </binding>            
      </basicHttpBinding>
</bindings>

I restarted IIS and changed "Max Rec Message Size" setting of BizTalk receive location but no luck.

Dijkgraaf
  • 11,049
  • 17
  • 42
  • 54

1 Answers1

0

Cross posted from this answer

In my case I had to increase the "Maximum received message size" of the Receive Location in BizTalk. That also has a default value of 64K and so every message was bounced by BizTAlk regardless of what I configured in my web.config

Community
  • 1
  • 1
Dijkgraaf
  • 11,049
  • 17
  • 42
  • 54