Silverlight4-RIAServices开发记事2-如何解决传输大量对象时的NotFound问题
http://forums.silverlight.net/forums/t/148523.aspx
<system.serviceModel>
<services>
<service name="YOURPROJECT.Web.YOURSERVICE"
behaviorConfiguration="YOURPROJECT-Web-YOURSERVICE">
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="YOURPROJECT-Web-YOURSERVICE">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
<dataContractSerializer maxItemsInObjectGraph="655360"/>
</behavior>
</serviceBehaviors>
</behaviors>