You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Benson Margulies (JIRA)" <ji...@apache.org> on 2008/10/15 01:01:44 UTC

[jira] Resolved: (CXF-1859) mtom-enabled property case sensitive

     [ https://issues.apache.org/jira/browse/CXF-1859?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Benson Margulies resolved CXF-1859.
-----------------------------------

       Resolution: Fixed
    Fix Version/s: 2.2

Patch applied. Thanks.

> mtom-enabled property case sensitive
> ------------------------------------
>
>                 Key: CXF-1859
>                 URL: https://issues.apache.org/jira/browse/CXF-1859
>             Project: CXF
>          Issue Type: Bug
>          Components: Configuration
>    Affects Versions: 2.0.8
>         Environment: jdk1.5
>            Reporter: Adrian Corcoran
>            Priority: Minor
>             Fix For: 2.2
>
>         Attachments: MessageUtils.patch
>
>   Original Estimate: 0.5h
>  Remaining Estimate: 0.5h
>
> Setting of jax-ws endpoint property mtom-enabled is case sensitive - setting value to 'TRUE' rather than 'true' will not enable mtom.
> The root of this problem is in MessageUtils.
>     public static boolean isTrue(Object value) {
>         if (Boolean.TRUE.equals(value) || "true".equals(value)) {
>             return true;
>         }
>         
>         return false;
>     }
> This should obviously be
>     public static boolean isTrue(Object value) {
> return Boolean.valueOf(value.toString());
> }

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