ARXML checker/validator? #110
-
Is there a module which can check the ARXML. Like a checker/validator? I would like to create AUTOSAR DEXT ARXMLs and would like to ensure the files are according to the DEXT specifications. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Personally, I validate XML using the Linux tool xmllint which is part of libxml2-utils. In Windows I run it either inside WSL2 or cygwin. Both ways works fine. Here's the bash-command I use for validating all arxml files in current directory. Adapt the file name of the XSD to match the one you have. find . -name "*.arxml" | xargs xmllint --noout --schema AUTOSAR_00051.xsd You can download the AUTOSAR xml schemas freely from autosar.org |
Beta Was this translation helpful? Give feedback.
Personally, I validate XML using the Linux tool xmllint which is part of libxml2-utils. In Windows I run it either inside WSL2 or cygwin. Both ways works fine.
Here's the bash-command I use for validating all arxml files in current directory. Adapt the file name of the XSD to match the one you have.
You can download the AUTOSAR xml schemas freely from autosar.org