SOAP Message in WCF: 1. The max size of SOAP message in WCF is 9,223,372,036,854,775,807 bytes. Including metadata. 2. For actual user data we can use 2,147,483,647 bytes out of it. 3. With default setting WCF uses only 65536 bytes. 4. We can change it by setting maxReceivedMessageSize in clients app.config file. 5. So selection of data types in Data Contract and Data table will matter a lot! 6. Reference : http://blogs.msdn.com/drnick/archive/2006/03/16/552628.aspx http://blogs.msdn.com/drnick/archive/2006/03/10/547568.aspx “Amazing blog for WCF!” Data Contract: 1. By Default WCF can serialize 65536 DataMember. 2. ...
Thinking Through Technology.... To design any system put your Business Standard and Technology together keeping them rightly disjoin....