Good Morning,
    I need to build a page that accepts a POST from a flash program. So
far my page has nothing in it other then some debugging code:
 
ArrayList rpd = new ArrayList();
  Enumeration names;
  for(names = req.getParameterNames(); names.hasMoreElements();)
  {
     ArrayList data = new ArrayList();
     String name = (String) names.nextElement();
     data.add(name);
     data.add(req.getParameter(name));
   System.out.println(data);
   out.println(data)
     rpd.add(data);
  }
 
When I post to the page I get the following message (that I assume is
coming from Tomcat):
 

Request Too Large

The "POST" request is too large for the internal work buffer:


The internal work buffer size is 1664 bytes.
The "POST" request size is 2302 bytes. 
 
 
Does any one know what that is and why I am getting it? It doesn't
really make sense to me. I am using Tomcat 4.1.27-LE with JDK 1.4.2 on
Win 2003.
 
 
 
Thanks,

 
Chanan Braunstein
Knovel Corp.
Web Development Manager
607-773-1840 x672
http://www.knovel.com
 
 

Reply via email to