You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "Ken (JIRA)" <ji...@apache.org> on 2009/02/22 07:35:45 UTC

[jira] Created: (WW-3008) File Upload Interceptor doesn't display i18n message while error occured.

File Upload Interceptor doesn't display i18n message while error occured.
-------------------------------------------------------------------------

                 Key: WW-3008
                 URL: https://issues.apache.org/struts/browse/WW-3008
             Project: Struts 2
          Issue Type: Bug
          Components: Core Interceptors
    Affects Versions: 2.1.6
         Environment: Tomcat6, Jboss-Web 2.1.1,Jetty 6.1
            Reporter: Ken


As it described in the document: http://cwiki.apache.org/WW/file-upload-interceptor.html 

This interceptor will add several field errors, assuming that the action implements ValidationAware. These error messages are based on several i18n values stored in struts-messages.properties, a default i18n file processed for all i18n requests. You can override the text of these messages by providing text for the following keys: 
struts.messages.error.uploading - a general error that occurs when the file could not be uploaded 
struts.messages.error.file.too.large - occurs when the uploaded file is too large 
struts.messages.error.content.type.not.allowed - occurs when the uploaded file does not match the expected content types specified 

but in fact it doen't show these messages.I followe the code into the interceptor,and find it only catch the exceptions and add the exception's message simplely by invoke addActionError method.

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


[jira] Commented: (WW-3008) File Upload Interceptor doesn't display i18n message while error occured.

Posted by "Andrew Hahn (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/struts/browse/WW-3008?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=46061#action_46061 ] 

Andrew Hahn commented on WW-3008:
---------------------------------

I also verified this.  This is a major problem with the file upload feature.

> File Upload Interceptor doesn't display i18n message while error occured.
> -------------------------------------------------------------------------
>
>                 Key: WW-3008
>                 URL: https://issues.apache.org/struts/browse/WW-3008
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Core Interceptors
>    Affects Versions: 2.1.6
>         Environment: Tomcat6, Jboss-Web 2.1.1,Jetty 6.1
>            Reporter: Ken
>
> As it described in the document: http://cwiki.apache.org/WW/file-upload-interceptor.html 
> This interceptor will add several field errors, assuming that the action implements ValidationAware. These error messages are based on several i18n values stored in struts-messages.properties, a default i18n file processed for all i18n requests. You can override the text of these messages by providing text for the following keys: 
> struts.messages.error.uploading - a general error that occurs when the file could not be uploaded 
> struts.messages.error.file.too.large - occurs when the uploaded file is too large 
> struts.messages.error.content.type.not.allowed - occurs when the uploaded file does not match the expected content types specified 
> but in fact it doen't show these messages.I followe the code into the interceptor,and find it only catch the exceptions and add the exception's message simplely by invoke addActionError method.

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