I am trying to use cmd to parse a NITF file to an XML using apache daffodil.
In cmd, I run .\daffodil.bat parse --schema nitf.dfdl.xsd 2301573_3.ntf
The nitf.dfdl.xsd
, nitf_common_types.dfdl.xsd
, nitf_extension_types.dfdl.xsd
and the NITF
are contained in the same folder as the daffodil.bat
file. The NITF
schemas can be found here
I get the error:
[error] Schema Definition Error: Error loading schema due to org.xml.sax.SAXParseException;
DaffodilXMLLoader: Unable to resolve
schemaLocation='com/tresys/nitf/xsd/nitf_common_types.dfdl.xsd'.
Schema context: file:/C:/Users/rinat/OneDrive/Desktop/WORK%20STUFF/apache-daffodil-3.4.0-
bin/apache-daffodil-3.4.0-bin/bin/nitf.dfdl.xsd Location in
file:/C:/Users/rinat/OneDrive/Desktop/WORK STUFF/apache-daffodil-3.4.0-bin/apache-daffodil-
3.4.0-bin/bin/nitf.dfdl.xsd
How do I resolve this?
The nitf schema imports files using the full path, so it expects the imported files to be in a
com/tresys/nitf/xsd/...
directory on the classpath. If you are copying the files out of those expected paths, then you'll need to modify thexs:import
statements to also not use those paths. For example, these lines innitf.dfdl.xsd
:Need to changed to the
schemaLocation
attribute to this:The other DFDL schema files may need a similar change.