I gone through this MSDN link but could not get enough details
Can any one explain me with a scenario where and why i need to set this value.
I came across the setting when i was trying to send a Data Contract object to service method and was getting exception The remote server returned an error: Not Found.,
My data contract is having List<>property and was getting exception if list contains 7 object it was working fine with 6 object.
I guess it was issue with Size of Data Contract.
When i changed my binding in config file
<readerQuotas maxDepth="64" maxStringContentLength="2147483647"
maxArrayLength="2147483647" maxBytesPerRead="4096" />
to
<readerQuotas maxDepth="128" maxStringContentLength="2147483647"
maxArrayLength="2147483647" maxBytesPerRead="4096" />
the Data Contract object reached to Service for processing.