小编典典

ASP.NET的JSON最大长度问题

json

我正在创建一个asp.net 2.0 Web服务,它将json作为输出,并且存在一个很大的,无法分解的数据集,该数据集超过了最大长度限制

我在互联网上进行搜索,并且在.net 3.5和4上有解决方案,但没有2.0。

有谁能告诉我如何增加JSON长度限制?


阅读 541

收藏
2020-07-27

共1个答案

小编典典

我也有同样的问题。看到3.5和4.0解决方案感到沮丧。事实证明,您执行相同的操作,只需<ConfigSections>在Web.config中的标记中添加几行即可。粘贴时,它应该是根目录下的第一个元素。

<configSections>
    <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
        <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
            <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
                <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false"/>
            </sectionGroup>
        </sectionGroup>
    </sectionGroup>
</configSections>

然后添加实际<system.web.extensions>部分:

<system.web.extensions>
  <scripting>
    <webServices>
      <jsonSerialization maxJsonLength="50000000"/>
    </webServices>
  </scripting>
</system.web.extensions>
2020-07-27