启用了WCF的Ajax——如何增加一个[OperationContract]的数据长度

本文关键字:一个 OperationContract 数据 增加 Ajax WCF 何增加 启用 | 更新日期: 2023-09-27 17:54:46

我想通过wcf插入html编辑器的内容到数据库,但当文本大小超过40行时,它不工作。

如何增加合约操作的数据长度?

由于安全原因,我想为一个操作合同设置大小

启用了WCF的Ajax——如何增加一个[OperationContract]的数据长度

操作级别不可能的,必须在服务级别完成。

如果您确实担心,请创建一个只有此操作的服务,并创建一个专用绑定,在其中更改各种配额阈值

您可以在客户端定义端点绑定时这样做,示例app.config

<system.serviceModel>
    <bindings>
      <basicHttpBinding>
        <binding name="BasicHttpBinding_ITestRunner" closeTimeout="01:00:00" openTimeout="01:00:00" receiveTimeout="01:00:00" sendTimeout="01:00:00" allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferSize="6553600" maxBufferPoolSize="5242880" maxReceivedMessageSize="6553600" messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true">
          <readerQuotas maxDepth="320" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
          <security mode="None">
            <transport clientCredentialType="None" proxyCredentialType="None" realm="" />
            <message clientCredentialType="UserName" algorithmSuite="Default" />
          </security>
        </binding>
      </basicHttpBinding>
    </bindings>
    <client>
相关文章: