我正在连接到基于 WCF 的 Web 服务。对于某些方法,输入包含对象/结构的列表。当此列表中的项目数增加超过一定数量时,HTTP/1.1 400 Bad Request
当我尝试使用 SOAPUI 测试该服务时,该服务将失败。我尝试使用以下更改更改 web.config 文件:
<httpRuntime maxRequestLength="2097151" />
<binding name="basicHTTP" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:01:00" sendTimeout="00:01:00" maxReceivedMessageSize="4194304" maxBufferSize="98547" maxBufferPoolSize="258547">
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
</binding>