You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "Spec Dev (JIRA)" <ji...@apache.org> on 2008/07/04 09:34:05 UTC

[jira] Issue Comment Edited: (WW-2464) Multipart request parameters not copied into parameterMap

    [ https://issues.apache.org/struts/browse/WW-2464?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=44327#action_44327 ] 

specdev edited comment on WW-2464 at 7/4/08 12:32 AM:
-------------------------------------------------------

Here is my action stack configuration:

           <interceptor-stack name="basicStack">
                <interceptor-ref name="servletConfig"/>
                <interceptor-ref name="authenticator"/>
            </interceptor-stack>

            <interceptor-stack name="formStack">
                <interceptor-ref name="basicStack"/>
                <interceptor-ref name="params"/>
                <interceptor-ref name="workflow"/>
            </interceptor-stack>

            <interceptor-stack name="uploadStack">
                <interceptor-ref name="basicStack"/>
                <interceptor-ref name="fileUpload"/>
                <interceptor-ref name="params"/>
                <interceptor-ref name="workflow"/>
            </interceptor-stack>

      was (Author: specdev):
    Here is my action stack configuration:

       <interceptor-stack name="formStack">
                <interceptor-ref name="servletConfig"/>
                <interceptor-ref name="authenticator"/>
                <interceptor-ref name="params"/>
                <interceptor-ref name="workflow"/>
            </interceptor-stack>
  
> Multipart request parameters not copied into parameterMap
> ---------------------------------------------------------
>
>                 Key: WW-2464
>                 URL: https://issues.apache.org/struts/browse/WW-2464
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Core Actions
>    Affects Versions: 2.0.11
>         Environment: Windows XP - Tomcat 6
>            Reporter: Spec Dev
>             Fix For: 2.1.3
>
>         Attachments: multipart post.PNG
>
>
> Multipart request parameters aren't being copied into the parameterMap.
> Hence, doing HttpServletRequest.getParameter("xxx") return null for all multipart parameters.
> A org.apache.struts2.dispatcher.StrutsRequestWrapper is passed when a GET or POST action is executed.
> However,  a org.apache.struts2.dispatcher.multipart.MultiPartRequestWrapper is used for "multipart/form-data" POST actions.
> The org.apache.struts2.dispatcher.multipart.MultiPartRequestWrapper has an attribute of type org.apache.struts2.dispatcher.multipart.JakartaMultiPartRequest which in turn maintains a HashMap attribute named "params".
> "params" contains the multipart request parameters and those parameter are never copied into the parameterMap.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.