Trying to marshal out the xml file using JAXB from a schema in which attribute datatype is not defined as a result the file created has
xmlns:xs="http://www.w3.org/2001/XMLSchema" xsi:type="xs:string"
eg
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<attributes>
<userLabel xmlns:xs="http://www.w3.org/2001/XMLSchema" xsi:type="xs:string">va</userLabel>
</attributes>
It should look like
<attributes>
<userLabel>va</userLabel>
</attributes>
I tried editing package-info.java
@javax.xml.bind.annotation.XmlSchema(namespace = "Myxsd.xsd", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED, xmlns = { @javax.xml.bind.annotation.XmlNs(prefix = "ns", namespaceURI = "http://www.w3.org/2001/XMLSchema") })
but not working . Is there any solution for this using binding.xjb file ( external binding )
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"set in your example. – Osw Mar 9 '12 at 14:25userLabelelement look like? – Blaise Doughan Mar 9 '12 at 14:26