I used jaxb before to generate java code from a xsd to easily prints xml files afterwards.
Now I want to use jaxb to generate a xbrl report. I use xjc as follows:
xjc.exe "http://www.nltaxonomie.nl/10.0/report/bd/entrypoints/bd-rpt-ob-aangifte-2016.xsd" -verbose -d "D:\Test\src" -p xso.bd.aangifte2016
The output is:
parsing a schema...
compiling a schema...
[INFO] generating code
unknown location
Result: no sources are generated
It does not say which location is unknown. I think xjc cannot deal with relative paths in the xsd, but I am not sure about it.
Does anyone know how to generated java code for this xsd?
Thanks.