hello. I have a file upload application that I'm porting to struts from my custom framework. I would like to continue using the jakarta file upload api so that I do not have to modify my file uploader class. Is there a way to bypass the struts file upload functionality?
I believe that as soon as the struts framework detects multipart/form-data encoding it starts using a multipart request processor to parse the stream. once that happens I can no longer parse the stream with the jakarta file upload api. where in the struts source does multipart/from-data detection occur? john