In ConfigHelper ll. 237-246 you will find:

    /**
     * The multipart object for this request.
     */
    public MultipartRequestWrapper getMultipartRequestWrapper() {

        if (this.request == null) {
            return null;
        }
        return (MultipartRequestWrapper)
this.request.getAttribute(Globals.MULTIPART_KEY);
    }

This code is mistaken and should be excized completely.  First, it
cannot be used, since the Globals.MULITPART_KEY returns a different
class completely.  Second, all this does is tie down different
multipart solutions and make the framework unnecessarily rigid.  I
have mentioned this before but it seems to just never go away.

Jack

-- 
"You can lead a horse to water but you cannot make it float on its back."
~Dakota Jack~

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to