So I have the following bindings.xjb to load a top level XSD that loads two child XSD's (both children have the same namespace).
<jxb:bindings schemaLocation="TopLevel.xsd">
</jxb:bindings>
Now the two child XSD's (lets call them childA and childB) both declare the same simple type ('ResponseTypeCodeEnumeration').
So I get the error
SAXParseException: 'ResponseTypeCodeEnumeration' is already defined
Normally I'd use a bindings entry to resolve the conflict. I don't know how to specifically reference the element in one of the child xsd's or what I would set it to resolve this problem.
Note: I don't own either XSD, so I'm not technically allowed to change them.