That's a hardcoded limit of OpenCMS.

com/opencms/core/CmsRequestHttpServlet.java:

private static final int DEFAULT_MAX_POST_SIZE = 8192 * 1024; // 8 Meg

...

private int m_maxSize = DEFAULT_MAX_POST_SIZE;

...

int length = m_req.getContentLength();
if(length > m_maxSize) {
  throw new IOException("Posted content length of " + length + " exceeds
limit of " + m_maxSize);
}


> -----Urspr�ngliche Nachricht-----
> Von: "B�hrle, Martin, FCI1" [mailto:[EMAIL PROTECTED]]
> Gesendet: Montag, 25. Februar 2002 19:32
> An: [EMAIL PROTECTED]
> Betreff: Servlet threw exception java.io.IOException: Posted content
> length of 36238773 exceeds limit of 8388608
> 
>       Are there any standard-limitations in Tomcat for java.io -
> Operations that limits file - uploading into the servlet-containers?
> 
>       How can we change this to the size we need?
> 

--
To unsubscribe:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>

Reply via email to