0

所以我有一个向 Web 服务发送请求(执行搜索)的应用程序,我得到以下异常:

<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsrr="http://wsrr_standard.[myCompany].com/2.0/"><env:Body><env:Fault><faultcode>200 OK</faultcode><faultstring>DataPower Error Message: document size limit of 4194304 bytes exceeded, aborting</faultstring><detail><errorCode>0x00030003</errorCode><errorNode>XICN0003:6807276</errorNode><errorOrigin>DataPower</errorOrigin><errorLevel>CRITICAL</errorLevel><ConsumerIDfromrequest/><ServiceSubscriberIDfromrequest/><RequestURI>/[MyService].svc</RequestURI><BackendOperation>{http://www.xmlns.[myCompany].com/interfaces/v1_0_2/}[MyMethod]</BackendOperation></detail></env:Fault></env:Body></env:Envelope>'. ---> System.Net.WebException: The remote server returned an error: (500) Internal Server Error.

我正在对错误DataPower 错误消息进行一些在线研究:超出了 4194304 字节的文档大小限制,正在中止并遇到以下页面:即使消息大小小于 XML 解析器限制设置,也超出了 XML 解析器限制,并且根据一种可能的解决方案是“禁用探测或增加附加到服务的 XML 管理器上的 XML 解析器限制”

我的问题如下,我可以从我的服务更改 web.config 中的 XML Parser 限制吗?或者还有什么其他可能的解决方案?

4

1 回答 1

0

没有其他解决方案。不得不增加 DataPower 中 XML 管理器的大小。

于 2013-03-12T22:22:11.347 回答