Web应用程序服务器上的发布数据的最大大小是否有限制?

时间:2013-05-16 10:04:33

标签: websphere application-server

在我的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 = "";
    ....

2 个答案:

答案 0 :(得分: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

答案 1 :(得分:0)

似乎存在限制 - 至少在Websphere App Server中是这样。以下是IBM的回复......

  

我查看了您的问题说明。你是对的,WAS 7有号码   入站请求中允许的最大参数数量,但是   number非常高,在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