2016-04-07 11 views
0
私はCに位置するQuickBooksが提供するqbxml.xsdスキーマからJavaのJAXBクラスを生成しようとしています

からのエラー発生JAXBクラス:\プログラムファイル(x86の)\インテュイット\ IDN \共通\ツール\バリQuickbooksの - qbxml.xsd

私は、次のコマンドを実行しています:

xjc -d C:\dev\jaxb -p com.quickbooks.jaxb qbxml.xsd 

しかし、私は次のエラーを受信:

[ERROR] src-resolve: Cannot resolve the name 'STRTYPE' to a(n) 'type definition' component. 
    line 5267 of file:/C:/Program%20Files%20(x86)/Intuit/IDN/Common/tools/validator/qbxml.xsd 

[ERROR] src-resolve: Cannot resolve the name 'STRTYPE' to a(n) 'type definition' component. 
    line 5285 of file:/C:/Program%20Files%20(x86)/Intuit/IDN/Common/tools/validator/qbxml.xsd 

[ERROR] src-resolve: Cannot resolve the name 'STRTYPE' to a(n) 'type definition' component. 
    line 5303 of file:/C:/Program%20Files%20(x86)/Intuit/IDN/Common/tools/validator/qbxml.xsd 

[ERROR] src-resolve: Cannot resolve the name 'STRTYPE' to a(n) 'type definition' component. 
    line 5321 of file:/C:/Program%20Files%20(x86)/Intuit/IDN/Common/tools/validator/qbxml.xsd 

Failed to parse a schema. 

すべてのヘルプは、これはJAを生成する私の最初の時間..ですいただければ幸いですXBクラスI、クラスに生成するために、間違ったXSDを使用した高度な

答えて

0

おかげ..ルート/親XSDファイル

xjc -d C:\dev\jaxb -p com.quickbooks.jaxb qbxmlops.xsd 

これは、すべてのJAXBを生成するqbxmlops.xsdているように見えますクラス。

関連する問題