在我当前的 C# web 应用程序中,我从 WebMethod 请求一个 JSON 对象,这个 JSON 对象超过了 maximumJSONLength。结果是:



我当前的解决方案是将 maxJsonlength(在 Web.config 中)提高到对象的 JSON 长度之上,但现在我正在将我的应用程序迁移到 Windows Server(它似乎不支持这种覆盖)。有没有办法通过 ajax POST 部分发送 JSON 对象?如果是这样,最好的解决方案是什么,我已经搜索了一种将数据分多个部分发送的方法,但没有明确的解决方案。

最佳答案

这不是一个无需编辑 maxJsonLength 的解决方案,但它允许在 Windows Server 中修改 maxJsonLength。

将以下内容添加到我的 web.config 允许我编辑 maxJsonLength。

<configuration>
  <configSections>
    <sectionGroup name="system.web.extensions"         type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
    <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
        <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/>
        <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
            <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="Everywhere" />
            <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" />
            <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" />
            <section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" />
        </sectionGroup>
    </sectionGroup>
    </sectionGroup>
  </configSections>
  ...
</configuration>

我希望这可以帮助其他遇到类似问题的人。

关于c# - 如何在不更改 maxJsonLength 的情况下发送大/多部分 JSON 对象?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23002035/

10-08 23:34