As far as I can tell it was a POST not a GET - but since Tomcat completely
fails on this request, I don't know how to be sure. Does anyone know the
place in the code that would output such an error?

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


-----Original Message-----
From: Adam Hardy [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 11, 2003 6:07 AM
To: Tomcat Users List
Subject: Re: Request Too Large


What is the URL & querystring? There are limits on how long the query 
string can be. Sounds like the flash program is doing a GET instead of a 
post.

Adam

On 09/10/2003 06:22 PM chanan braunstein wrote:
> 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
>  
>  
> 

-- 
struts 1.1 + tomcat 4.1.27 + java 1.4.2
Linux 2.4.20 RH9


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to