无法从Adobe Flex的HttpService向Java Servlet发布大数据(15MB)

时间:2013-12-11 22:58:18

标签: actionscript-3 flex servlets httpservice

我无法使用Adobe Flex的HttpService向Java Servlet发布大数据(xml)(比如15MB)。 但是,当我发布较小尺寸的数据(比如650kb)时,我能够在Java Servlet中检索它。 我尝试通过设置属性maxPostSize =“0”来更改服务器端的tomcat设置, 但没有奏效。 我正在使用IE8浏览器。

  Here is the flex code :
var http:HTTPService = new HTTPService();
     http.url = url;
     http.resultFormat = "e4x";
     http.method = "post";
     var parm:Object = {rateList:xmlObj.toXMLString()};//The string size is 15061302 bytes)
     submitCall = new AsyncProcessAdapter(http.send(parm), parm);

Here is the Java Servlet Code : String parm = request.getParameter("rateList");

请提出任何建议!!

0 个答案:

没有答案