|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] How do I validate against a schema?
I am using the following script to check that a document entered on a form
is well formed, however I would also like to validate it against the
schema. Is there some way to do this? Everything I have seen so far only
appears to validate against DTDs.
Thanks
Adrian
<script>
function f() {
var val = theform.doc.value;
var test = new ActiveXObject("Microsoft.XMLDOM");
test.async = false;
test.loadXML(val);
err = test.parseError;
if (err != 0) {
ErrorMsg = "Your XML Document is not Well Formed.\n" +
err.srcText + "\n" + "Line " + err.line + ", Pos " +
err.linepos + "\n" + err.reason;
alert(ErrorMsg);
test = null;
event.returnValue = false;
}
}
</script>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








