Raul Kripalani created CAMEL-5864:
-------------------------------------

             Summary: Xml Type Conversions from byte[] are broken
                 Key: CAMEL-5864
                 URL: https://issues.apache.org/jira/browse/CAMEL-5864
             Project: Camel
          Issue Type: Bug
          Components: camel-core, camel-xslt
    Affects Versions: 2.10.3
            Reporter: Raul Kripalani
            Priority: Blocker


XsltBuilder.getSource(Exchange e, Object o) try to convert the payload to a 
Source. If you have a byte[] payload, then the following type converter will be 
picked:

{code}
InstanceMethodTypeConverter: public javax.xml.transform.sax.SAXSource 
org.apache.camel.converter.jaxp.XmlConverter.toSAXSource(byte[],org.apache.camel.Exchange)
 
throws 
java.io.IOException,org.xml.sax.SAXException,javax.xml.transform.TransformerException
{code}

This type converter requires the Exchange 
(InstanceMethodTypeConverter.useExchange == true), but line 461 of XsltBuilder 
doesn't pass it on.

Therefore, a NullPointerException happens.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to