Hi all! I have a form with "enctype" set to "multipart/form-data" obviously and it hits a controller.ServletFileUpload.isMultipartContent(request) returns true showing the request is of multipart type but I am unable to get any file items when I retreive the list like this,
List items = upload.parseRequest(request); I have the "name" and "id" set for the file item in my form. Can anybody help me out with what could be the reason? Thanks, Kamran.
