Trying to get MTOM working in a WCF client. The particular function I\'m trying to consume sends an MTOM-encoded byte array of a PDF document. Using SoapUI to test the API u
For my case, I was getting the indicated error, in my binding I had
maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647"
it did not start working until I added:
maxBufferSize="2147483647"
Just incase anyone has the same issue.