ZVON > Tutorials > XML Schema and Relax NG Tutorial |
Intro / Search / ZVON |
Index | >> Example 2 / 3 << | Prev | Next | |
Now, let's have the same document as in previous example, but the "root" element must be from some concrete namespace, let's say "http://foo".
Valid document <root xmlns="http://foo" >aaa</root> Valid document <f:root xsi:schemaLocation="http://foo correct_0.xsd" xmlns:f="http://foo" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > test </f:root> |