Re: Possible bug : problem getting request parameters while uploading a file

2003-03-12 Thread mleroux
Actually, not much things have changed. The CVS repositery has recently changed, so all the file versions are set to 1.1. But I've got the sources of cocoon 2.0.3 and cocoon 2.0.4. Therefore I can give you the diffs of some files. org.apache.cocoon.components.request.MultiPartRequestFactoryImpl

Re: Possible bug : problem getting request parameters while uploading a file

2003-03-12 Thread Geoff Howard
Very interesting - I didn't think much changed with the parser itself. What does cvs show? (can't and shouldn't access it from work) Geoff At 09:07 AM 3/12/2003, you wrote: Well, I already knew these configuration details. Here 's my configuration : autosave-uploads = true upload-directory =

Re: Possible bug : problem getting request parameters while uploading a file

2003-03-12 Thread mleroux
Well, I already knew these configuration details. Here 's my configuration : autosave-uploads = true upload-directory = /WEB-INF/work/upload-dir overwrite-uploads = rename upload-max-size = 1000 request-factory = org.apache.cocoon.components.request.MultipartRequestFactoryImpl I can precise

Re: Possible bug : problem getting request parameters while uploading a file

2003-03-12 Thread Geoff Howard
There were some changes between 2.0.3 and 2.0.4 WRT file uploads. The one that pops out immediately without knowing much about your action is that autosaving file uploads is now set to false by default in web.xml. This means that you'll have a FilePartArray in the request. If you weren't aware o

Possible bug : problem getting request parameters while uploading a file

2003-03-12 Thread mleroux
Hi ! I've recently upgraded from Cocoon 2.0.3 to Cocoon 2.0.4 and something doesn't work anymore. I've posted a message on cocoon-users but no one seems to be able to answer me. Here's a summary of the problem : I need to upload a file from an HTML form. I use the automatic upload provide