The maximum message size quota for incoming messages (65536) has been exceeded

前端 未结 8 1146
别那么骄傲
别那么骄傲 2020-11-30 04:36

I get this exception while creating scope for few tables all those tables are huge in design


    
        

        
相关标签:
8条回答
  • 2020-11-30 05:11

    If you are using CustomBinding then you would rather need to make changes in httptransport element. Set it as

     <customBinding>
        <binding ...>
         ...
         <httpsTransport maxReceivedMessageSize="2147483647"/>
        </binding>
     </customBinding>
    
    0 讨论(0)
  • 2020-11-30 05:16

    My solution was to use the "-OutBuffer 2147483647" parameter in my query, which is part of the Common Parameters. PS C:> Get-Help about_CommonParameters -Full

    0 讨论(0)
提交回复
热议问题