WCF - How to Increase Message Size Quota

后端 未结 13 2028
失恋的感觉
失恋的感觉 2020-11-22 06:16

I have a WCF Service which returns 1000 records from database to the client. I have an ASP.NET WCF client (I have added service reference in asp.net web application project

13条回答
  •  执念已碎
    2020-11-22 07:03

    For HTTP:

    
      
        
            
        
      
    
    

    For TCP:

    
      
        
          
        
      
    
    

    IMPORTANT:

    If you try to pass complex object that has many connected objects (e.g: a tree data structure, a list that has many objects...), the communication will fail no matter how you increased the Quotas. In such cases, you must increase the containing objects count:

    
      
        
          ...
          
        
      
    
    

提交回复
热议问题