Greg
Greg
I am having a major problem with this limitation. I didn't realize that @XmlSchema was not supported with the XML annotation support. Once I added a namespace to my root...
In my situation I have four classes that can be written as separate files or included inline with a parent (which would be one of the four). Each of these...
Here is the code for an @XmlSchema example: package-info.java in schemasample package ``` @XmlAccessorOrder(XmlAccessOrder.UNDEFINED) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchema(namespace = "my.xmlschema.person", elementFormDefault = XmlNsForm.QUALIFIED) package schemasample; import javax.xml.bind.annotation.XmlAccessOrder; import javax.xml.bind.annotation.XmlAccessorOrder; import javax.xml.bind.annotation.XmlNsForm; import...
Also, I am still trying to work out the implementation for overriding the namespace behavior. I tried just overriding findNamespace in JaxbAnnotationIntrospector but couldn't figure out what to return. The...