I can\'t seem to get my WCF service to accept large amounts of data being sent up to it.
I configured the maxReceivedMessageSize for the client and could receive l
Removing the name from your binding will make it apply to all endpoints, and should produce the desired results. As so:
Also note that I removed the bindingConfiguration attribute from the endpoint node. Otherwise you would get an exception.
This same solution was found here : Problem with large requests in WCF