Uploaded image for project: 'Camel'
  1. Camel
  2. CAMEL-12141

Jaxb unmarshall populating wrong value instead of exception when value type given wrong in Camel rest binding mode in rest DSL

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Minor
    • Resolution: Works for Me
    • 2.18.3, 2.20.1, 2.21.0
    • 2.21.0
    • camel-jaxb, camel-jetty
    • None
    • Unknown

    Description

      I am using camel rest DSL and enabled the rest binding feature to convert my xml to POJO internally after I receive the xml as input.So I am using RestBindingMode.xml.
      Now In my XSD I have one long field let say my zipcode. In XML I am providing some string in the zipcode field like "ABC". Now when the internal restbinding happen it is not throwing any NumberFormatException for this instead it is populating "0" in the zipcode field.
      I am using JAXB plugin in POM file that is generating the POJO class from my XSD automatically and using JAXB jar file in my classpath.

      Example:
      input xml
      <?xml version="1.0" encoding="utf-8"?>
      <address>
      <city>str1234</city>
      <line1>str1234</line1>
      <line2>str1234</line2>
      <state>str1234</state>
      <zipcode>ABC</zipcode>
      </address>

      output xml
      <address>
      <city>str1234</city>
      <line1>str1234</line1>
      <line2>str1234</line2>
      <state>str1234</state>
      <zipcode>0</zipcode>
      </address>

      Tested with newer version but no luck !!

      The zipcode in the output xml is "0". That should not be the ideal case. I am passing a String "ABC" in the zipcode field which is long as per my xsd. So it should throw exception. But it is populating "0" when using RestBinding. I have attached source code below. This is a maven project.

      In the log in my route it is shown that the xml is getting changed.

      Please let me know if you need more details.

      Attachments

        1. springboot-camel.rar
          37.27 MB
          Arnab Santra

        Activity

          People

            davsclaus Claus Ibsen
            arnab.santra85@gmail.com Arnab Santra
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: