WilhelmTorsten at aol.com wrote: > How can I validate a XML-file against a XSD-file? The used product > is XMLmind (Standart Edition)? I can?t find the answer into the help-files
--> To make it simple, you cannot do that within XMLmind XML Editor Standard Edition because it has been restricted in its support of W3C XML Schemas. See http://www.xmlmind.com/xmleditor/stdedition.html --> You can use the command-line utility called "xsdvalid" found in XXE_install_dir/bin/ directory. Example of use: --- C:\Program Files\XMLmind_XML_Editor\bin\xsdvalid -s schema.xsd doc.xml --- However this will not work if you have installed the distribution containing a private Java runtime (because xsdvalid.bat may not find the "java.exe" in the %PATH%.) More info in http://www.xmlmind.com/xmleditor/_distrib/doc/xvalid/xsdvalid_reference.html

