Thank for your reply,
Like you said, I tried to add an "upload-max-size" init param in the Spring
configuration of the Cocoon SitemapServlet but I have still the same error.
Here is what I wrote :
<bean id="zzz.ma-adminui.block" class="
org.apache.cocoon.sitemap.SitemapServlet">
<servlet:context mount-path="/ui"
context-path="blockcontext:/ma-adminui/" >
<servlet:init-params>
<entry key="upload-max-size" value="10000000" />
</servlet:init-params>
<servlet:connections>
<entry key="ajax" value-ref="
org.apache.cocoon.ajax.impl.servlet" />
<entry key="forms" value-ref="
org.apache.cocoon.forms.impl.servlet" />
<entry key="services" value-ref="zzz.ma-service.block"/>
</servlet:connections>
</servlet:context>
</bean>
Perhaps is my syntax wrong, I am still looking for it on the net.
Best regards,
JC
2008/1/26, Grzegorz Kossakowski <[EMAIL PROTECTED]>:
>
> Jean-Claude Vogel pisze:
> > Hello,
> >
> > I would like to upload a file in a Cocoon forms ihm, so I have fixed the
> > limit upload size in my web.xml :
> > <servlet>
> > <description>Cocoon blocks dispatcher</description>
> > <display-name>DispatcherServlet</display-name>
> > <servlet-name>DispatcherServlet</servlet-name>
> >
> > <servlet-class>org.apache.cocoon.servletservice.DispatcherServlet
> </servlet-class>
> > <init-param>
> > <param-name>enable-uploads</param-name>
> > <param-value>true</param-value>
> > </init-param>
> > <init-param>
> > <param-name>upload-max-size</param-name>
> > <param-value>10000000</param-value>
> > </init-param>
> > <load-on-startup>2</load-on-startup>
> > </servlet>
> >
> > It works fine when I upload a small file. But when I try to upload a
> > bigger file I am still having the exception :
> > Could somebody explain me what is wrong in my code please ?
>
> Hi Jean,
>
> I'm not sure but I guess that it's SitemapServlet that makes checks for
> upload limits and other
> fancy stuff. If you pass the configuration to the DispatcherServlet it
> never reaches SitemapServlet.
>
> I suggest to move this configuration to declaration of your SitemapServlet
> bean. Try again and
> report back if it still works for you.
>
> Best regards,
>
> --
> Grzegorz Kossakowski
> Committer and PMC Member of Apache Cocoon
> http://reflectingonthevicissitudes.wordpress.com/
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>