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


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.

Reply via email to