1

在我的 Web 应用程序中,有一个表单可以包含大量数据(这取决于先前查询的结果)。当表单达到一定大小时,servlet 无法应对并引发异常。似乎第一次尝试获取请求参数会导致问题。

我试图在我的测试服务器上重现该问题,但即使数据大小大于生产服务器上的数据,也不会出现问题。

结果,我现在想知道是否有服务器设置限制了可以在请求中传递的数据大小。我只能假设 2 台服务器的配置方式有所不同。

应用程序服务器是 Websphere 7。我已经尝试使用 IE9、当前 FF 和当前 Chrome 的应用程序 - 都产生相同的结果。

例外是

java.lang.IllegalArgumentException
com.ibm.wsspi.webcontainer.util.RequestUtils.parseQueryString 196
com.ibm.ws.webcontainer.servlet.RequestUtils.parsePostData 356
com.ibm.ws.webcontainer.srt.SRTServletRequest.parseParameters 2051
com.ibm.ws.webcontainer.srt.SRTServletRequest.getParameter 1651
com.acme.Servlet.getNDC 126
com.acme.Servlet.doPost 96
javax.servlet.http.HttpServlet.service 738
javax.servlet.http.HttpServlet.service 831
com.ibm.ws.webcontainer.servlet.ServletWrapper.service 1658
com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest 940
com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest 503
com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest 181
com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest 91
com.ibm.ws.webcontainer.WebContainer.handleRequest 875
com.ibm.ws.webcontainer.WSWebContainer.handleRequest 1592
com.ibm.ws.webcontainer.channel.WCChannelLink.ready 186
com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination 453
com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest 515
com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest 306
com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete 83
com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted 165
com.ibm.io.async.AbstractAsyncFuture.invokeCallback 217
com.ibm.io.async.AsyncChannelFuture.fireCompletionActions 161
com.ibm.io.async.AsyncFuture.completed 138
com.ibm.io.async.ResultHandler.complete 204
com.ibm.io.async.ResultHandler.runEventProcessingLoop 775
com.ibm.io.async.ResultHandler$2.run 905
com.ibm.ws.util.ThreadPool$Worker.run 1646

编码

protected String getNDC(HttpServletRequest request)
{
    String user = request.getHeader("iv-user");
    if (user == null)
        user = "";
    HttpSession session = request.getSession(false);
    String sessionString = session == null ? "" : session.getId();
    String action = request.getParameter(Constant.ACTION);   <=== ERROR HERE
    if(action == null)
        action = "";
    ....
4

2 回答 2

2

POST 数据大小可能受 HTTP 通道配置中的设置限制:

http://pic.dhe.ibm.com/infocenter/wasinfo/v7r0/topic/com.ibm.websphere.express.doc/info/exp/ae/urun_chain_typehttp.html

如果 WAS 前面有 Web 服务器,那么您还应该检查PostSizeLimit插件配置中的属性:

http://www-01.ibm.com/support/docview.wss?uid=swg21460889

于 2013-05-16T16:40:51.873 回答
0

似乎有一个限制 - 至少在 Websphere App Server 中。以下是 IBM 的回应……

我查看了您的问题描述。没错,WAS 7 有入站请求中允许的最大参数数量,但数量非常高,GET 和 POST 请求都是 10000。如果您不想限制可以包含在请求中的参数数量,则必须将“com.ibm.ws.webcontainer.maxParamPerRequest”webcontainer 定制属性设置为 -1,有关详细信息,请参阅“Web 容器定制属性” - http://www14.software.ibm.com/webapp/wsbroker/redirect?version=compass&product=was-nd-dist&topic=rweb_custom_props

于 2013-05-28T05:07:30.060 回答