Ales Dolecek created CAMEL-6630:
-----------------------------------

             Summary: Validation using JAXB format is not thread safe
                 Key: CAMEL-6630
                 URL: https://issues.apache.org/jira/browse/CAMEL-6630
             Project: Camel
          Issue Type: Bug
          Components: camel-core
    Affects Versions: 2.11.1
            Reporter: Ales Dolecek


I'm using JAXB format for unmarshaling. It is defined like this:

<dataFormats>
  <jaxb id="kofax" contextPath="com.indracompany.telefonica.assignmanager"
      schema="classpath:DocumentsDataForAssignManager.xsd"/>
</dataFormats>

And used in route like this:

<unmarshal ref="kofax"/>

Sometimes however I get following exception:

org.xml.sax.SAXException: FWK005 parse may not be called while parsing.
        at 
com.sun.org.apache.xerces.internal.jaxp.validation.Util.toSAXException(Util.java:65)
 ~[na:1.7.0_21]
        at 
com.sun.org.apache.xerces.internal.jaxp.validation.XMLSchemaFactory.newSchema(XMLSchemaFactory.java:244)
 ~[na:1.7.0_21]
        at 
org.apache.camel.converter.jaxb.JaxbDataFormat.createUnmarshaller(JaxbDataFormat.java:347)
 ~[camel-jaxb-2.11.1.jar:2.11.1]
        at 
org.apache.camel.converter.jaxb.JaxbDataFormat.unmarshal(JaxbDataFormat.java:171)
 ~[camel-jaxb-2.11.1.jar:2.11.1]
        at 
org.apache.camel.processor.UnmarshalProcessor.process(UnmarshalProcessor.java:57)
 ~[camel-core-2.11.1.jar:2.11.1]

Seems that the problem is same as in CAMEL-1565. That ticket was however 
related to <validate> element.

Right now I have disabled validation on the jaxb format used for unmarshalling 
and put extra <validate> in the route. It would be however fine to have this 
issue fixed as well.

--
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