0

我正在我的客户端应用程序中使用 js 和 jquery 捕获页面数据和鼠标移动。我毫无问题地捕获了所有下面提到的数据。我需要将我的客户端应用程序数据发送到 WCF 服务应用程序进行处理。通常较少的数据意味着大约 4000 字节意味着没有任何问题,数据已发送。但如果我发送的数量超过了这意味着,它会显示错误

400 错误请求

数据超过了 4000 字节页面的限制。.

我使用 mexhttpbinding 端点,因为我们习惯于将数据发送到跨域。

请提供解决此问题的建议。[注意] 我正在发送 json 数据

4

1 回答 1

0
In Web.config  , 
Add : <bindings>
      <webHttpBinding>
      <binding name="ApiQuotaBinding" maxReceivedMessageSize="300971520" maxBufferPoolSize="300971520" maxBufferSize="300971520" closeTimeout="00:50:00" openTimeout="00:50:00" receiveTimeout="00:50:00" sendTimeout="00:50:00">
          <readerQuotas maxDepth="402" maxStringContentLength="300971520" maxArrayLength="300971520" maxBytesPerRead="300971520"/>
          <security mode="None"/>
        </binding>   </webHttpBinding>
    </bindings>
于 2013-07-08T12:12:18.467 回答