You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have few XSD files, which has commonTypes included in some of the files and some are not. <xsd:include schemaLocation="common/CommonTypes.xsd"/>
There is also a binding file where this commontype is defined.
I'm not able to parse the files which have no common types included. The xjc parsing gives me the following error
[ant:xjc] [ERROR] "file:/Users/a-8845/Downloads/spring-gradle-app/src/main/resources/schemas/farelogix/common/CommonTypes.xsd" is not a part of this compilation. Is this a mistake for "file:/Users/a-8845/Downloads/spring-gradle-app/src/main/resources/schemas/farelogix/CCValidationRQ.xsd"? [ant:xjc] line 10 of file:/Users/a-8845/Downloads/spring-gradle-app/src/main/resources/schemas/farelogix/binding/bindings.xjb [ant:xjc]
How can i prevent this issue ? Can someone help?
The text was updated successfully, but these errors were encountered:
I have few XSD files, which has commonTypes included in some of the files and some are not.
<xsd:include schemaLocation="common/CommonTypes.xsd"/>
There is also a binding file where this commontype is defined.
<bindings schemaLocation="../common/CommonTypes.xsd"> <bindings node="//xsd:complexType[@name='SegmentIDRef']"> <class name="SegmentIDRefTypeFromCommonTypes"/> </bindings> </bindings>
I'm not able to parse the files which have no common types included. The xjc parsing gives me the following error
[ant:xjc] [ERROR] "file:/Users/a-8845/Downloads/spring-gradle-app/src/main/resources/schemas/farelogix/common/CommonTypes.xsd" is not a part of this compilation. Is this a mistake for "file:/Users/a-8845/Downloads/spring-gradle-app/src/main/resources/schemas/farelogix/CCValidationRQ.xsd"? [ant:xjc] line 10 of file:/Users/a-8845/Downloads/spring-gradle-app/src/main/resources/schemas/farelogix/binding/bindings.xjb [ant:xjc]
How can i prevent this issue ? Can someone help?
The text was updated successfully, but these errors were encountered: