WCF 客户端解决大数据量传输配置

 1   <system.serviceModel>

 2     <bindings>

 3       <basicHttpBinding>

 4         <binding name="BasicHttpBinding_IServices"  maxBufferPoolSize="2147483647" receiveTimeout="00:00:10" maxReceivedMessageSize="2147483647" maxBufferSize="2147483647">

 5           <readerQuotas maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxDepth="2147483647" maxNameTableCharCount="2147483647" maxStringContentLength="2147483647"/>

 6         </binding>

 7         

10       </basicHttpBinding>

11     </bindings>

12   </system.serviceModel>

 

 

你可能感兴趣的:(大数据量)