graphicsxp
unread,Apr 29, 2009, 11:14:50 AM4/29/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to DotNetDevelopment, VB.NET, C# .NET, ADO.NET, ASP.NET, XML, XML Web Services,.NET Remoting
Hi,
I was getting the following message when trying to return a List of
objects from my WCF service :
The maximum message size quota for incoming messages (65536) has been
exceeded. To increase the quota, use the MaxReceivedMessageSize
property on the appropriate binding element. The maximum message size
quota for incoming messages (65536) has been exceeded.
So I changed the values of maxBufferSize, maxBufferPoolSize and
maxReceivedMessageSize to 50000000.
Now it's working. However I would like to know what are the drawbacks
of doing this ? Is it equivalent to 5 Mbytes and if so, does it affect
performances ?
Thanks