was looking for a recent DDEX parser and found your project, looks very promising!
However, I fail at simple tasks like parsing DDEX 4.3 files. I tried both the Python/NodeJS bindings as well as the native ddex-parser CLI.
So after building the CLI using cargo build --release, i tried some of my own <NewReleaseMessage> XMLs, as well as the samples provided in the repo. Whatever I try i get the same error message. So for the samples in the repo for instance:
> ./target/release/ddex-parser parse examples/Samples43/1\ Audio.xml
it fails with
Error: Required DDEX field missing: Deal/DealReference
and the same is true for all the other samples in the examples directory.
Is there a known issue ATM or am I doing something conceptually wrong here?
was looking for a recent DDEX parser and found your project, looks very promising!
However, I fail at simple tasks like parsing DDEX 4.3 files. I tried both the Python/NodeJS bindings as well as the native
ddex-parserCLI.So after building the CLI using
cargo build --release, i tried some of my own<NewReleaseMessage>XMLs, as well as the samples provided in the repo. Whatever I try i get the same error message. So for the samples in the repo for instance:it fails with
and the same is true for all the other samples in the
examplesdirectory.Is there a known issue ATM or am I doing something conceptually wrong here?