Using JAXB to generate XML binding classes.
The schema is based on a set of legacy XML files, and includes this snippet:
None of this bindings worked for me, i got this error:
[ERROR] La evaluación de XPath de ".//xs:attribute[@name='Value']" produce un nodo de destino vacío
It produced an empty target node... Then i realized (after 30 minutes of dispair) that my binding was aiming to a complexType instead of an element. The answer was in my xsd file.
Thank you