Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Local XML validation with DTD or XSD using a relative path?

An XML file can be defined and validated with an Document Type Description (DTD) or XML Schema (xsd) as follows:

<?xml version='1.0' encoding='UTF-8'?>
<annotation xmlns="http://www.xyz.com"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.xyz.com
    file:system.xsd" >

or

<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE annotation SYSTEM "http://www.xyz.de/system.dtd">

Both ways define a URL where the DTD or XSD is found. Is there a way to give a relative or local path? So I can store them allong with the XML files instead of relying on a server?

like image 775
eactor Avatar asked Dec 09 '22 17:12

eactor


1 Answers

It's easy. Just put the relative location of the file like

<?xml version='1.0' encoding='UTF-8'?>
<annotation xmlns="http://www.xyz.com" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.xyz.com ./system.xsd" >
like image 153
Stanley De Boer Avatar answered Dec 28 '22 07:12

Stanley De Boer