-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathindex.html
87 lines (77 loc) · 2.54 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="CONTENT-TYPE" content="text/html; charset=iso-8859-1">
<title>MSV Developer's Guide</title>
<!-- $Id$ -->
<style type="text/css">
<!--
pre { background-color: #eeeeee; color: #000099}
code { color: #000099}
h1 { color: #000099}
h2 { color: #000099; font-style: italic}
h3 { font-style: italic; color: #000099; text-decoration: underline}
h4 { font-style: italic; color: #000099}
-->
</style>
</head>
<body bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="#dddddd">
<tr>
<td align="center" valign="middle">
<table width="100%" border="1" cellspacing="3" cellpadding="3">
<tr>
<td valign="top" bgcolor="#FFFFFF">
<h1>Multi-Schema XML Validator (MSV)</h1>
</td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#FFFFFF">
<h2><em>Developer's Guide</em></h2>
</td>
</tr>
</table>
</td>
</tr>
</table>
<blockquote>
<p>The Multi-Schema Validator(MSV) is a Java<small><sup>TM</sup></small> technology tool to validate XML documents against a variety of XML schemata. It supports RELAX Namespace, RELAX Core, RELAX NG, TREX, XML DTDs, and a subset of W3C XML Schema Part 1.</p>
</blockquote>
<hr>
<a name="qs"></a>
<h2>Simple API for MSV</h2>
<blockquote>
<p>Most of the time, you just need plain simple validation and nothing else. If so, you can use JARV, an implementation-independent, simple and easy interface set.
</p><p>
More information about JARV is available <a href="JARV.html">
here</a>.
</p>
</blockquote>
<hr>
<a name="jaxp"></a>
<h2>JAXP masquerading</h2>
<blockquote>
<p>
If you have existing code that works with JAXP and you don't
want to change it, then you should <a href="JAXPmasquerading.html">
have a look at the JAXP-masquerading feature of MSV.</a>
</p>
</blockquote>
<hr>
<a name="overview"></a>
<h2>Design & Native API</h2>
<blockquote>
<p>
If you need even more control over the validation process (for example, you are developing a schema-related tool), then you may want to understand the native API of MSV. For more information, <a href="nativeAPI.html">read this document</a>.
</p>
</blockquote>
<hr>
<a name="javadoc"></a>
<h2>JavaDoc</h2>
<blockquote>
<p>
The current Java API of MSV Core Validator is available <a href="./api/index.html">here</a>.
</p>
</blockquote>
</body>
</html>