XML – A BLOB variable (the XML content).
XSD schema Url – URL (http or local) of a schema file. If the schema has a targetNamespace, the 2nd parameter (if specified) must have the target namespace prefixed before the schema location, separated by a space.
For example:
XMLValidate (File2Blb ('my.xml'), 'MY_NS http://srvr/my.xsd') , the same as if the schemaLocation was specified in the XML document itself.
MY_NS – The namespace for the given XSD file.
Spaces in the schema path must be escaped.
For example:
XMLValidate (File2Blb ('my.xml'), 'MY_NS http://my%20srvr/my.xsd')
|