|
Olle, do you have the error message you were getting when IO was not present? If so, then I could also make a FAQ entry.
On the need for a directory to be set - looks like the intention was for the code to use java.io.tmpdir as a default, but the code doesn't match that. So need to find out if the code or the docs should change.
> Also in the User guide:
> > // Check that we have a file upload request > boolean isMultipart = ServletFileUpload.isMultipartContent(request); > > isMultipartContent is Deprecated and I couldn't find a replacement for it in 1.1.1. I have changed the docs in that sense. Running under Tomcat 5.5 I got the error:
java.lang.NoClassDefFoundError: org/apache/commons/io/output/DeferredFileOutputStream this may be a bit implementation dependent... I guess any NoClassDefFoundError for org/apache/commons/io classes would mean the same thing - perhaps this can be explained in the FAQ/userguide just in case. FAQ entry added.
Just need to deploy the site now so this issue can be resolved. Site should be deployed in 2 hours.
|
||||||||||||||||||||||||||||||||||||||||||||||||||
The reason for not using generics is to support pre 5.0 users; there are still a lot around. About the only thing you can really be sure about nowadays is that 1.1 can be ignored.
Thanks for the report; will work on getting them fixed.