diff --git a/content/2015/05/xml-schema-validation-for-command-line.html b/content/2015/05/xml-schema-validation-for-command-line.html index f465765..7c91243 100644 --- a/content/2015/05/xml-schema-validation-for-command-line.html +++ b/content/2015/05/xml-schema-validation-for-command-line.html @@ -28,7 +28,7 @@ space delimited list of URI/URL pairs. None of the command line tools that I used uses this attribute to make the schema validation simple. This includes [xmllint](https://web.archive.org/web/20210415145100/http://xmlsoft.org/xmllint.html) -Via WebBackMachine as original link it http only. +Via WayBack Machine as original link it http only. which uses the libxml2 library. I also tried to use the Java XML library Xerces, but was unable to get it to work. Xerces did not provide a simple command line utility, and I couldn't figure out the correct java @@ -36,7 +36,7 @@ command line to invoke the validator class. My coworker, [Patrick](https://web.archive.org/web/20151012162546/http://fivetwentysix.com/) -Via WebBackMachine as original link is now defunct., found the blog entry, +Via WayBack Machine as original link is now defunct., found the blog entry, [Nokogiri XML schema validation with multiple schema files](https://avinmathew.com/nokogiri-xml-schema-validation-with-multiple-schema-files/), which talks about using `xs:import` to have a single schema file support multiple name spaces. With this, we realized that we could finally get