views:

1831

answers:

2

I noticed that 2147483647 seems to be a popular choice for maxReceivedMessageSize but is this the limit?

+2  A: 

Nope, the limit is Int64.MaxValue - reference

AgileJon
Great article thanks
Nick
A: 

On the other hand, you might want to consider that setting it to 2 GB of message size means your WCF server will potentially have to deal with several messages of up to 2 GB in size simultaneously - can it do that??

Marc

marc_s
Yes it should be able to thanks
Nick