Details
-
New Feature
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
2.11.0
-
None
-
Patch Available
-
Unknown
Description
There is an issue with the default stax XMLEventReader that makes unmarshalling xml's result in null values when the xml has a top-level namespace that defines a xmltype that does not match the tag name of the object to be unmarshalled. With how camel-stax is written, the only way around it is to change the source xml file, which seems like an unnecessary harsh penalty for all the quirky xml files out there. Therefore, I propose a solution to have the xml reader ignore namespaces and thereby making the reader a lot more flexible.
With this feature, someone can just add a boolean to the stax method:
.split(stax(Product.class, false))