I'm getting the following communication exception for my wcf service making cal to another 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."
I resolved this by increasing the size as below: maxReceivedMessageSize="50000000"
But, here I want to know whether any side effects of increasing message size to such big level.