here I am again :/ I managed to make exist database run in embedded mode. However, what I can't make work is implicit XML validation. I proceeded according to this page: http://exist.sourceforge.net/validation.html
This is my conf.xml:
<validation mode="auto">
<entity-resolver>
<catalog uri="/db/catalog.xml" />
</entity-resolver>
</validation>
This is my catalog.xml which I inserted into exist database:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE catalog PUBLIC "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN"
"http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd">
<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">
<uri name="http://www.w3.org/2001/XMLSchema" uri="videodes.xsd"/>
</catalog>
My XML schema videodes.xsd which I also inserted into database looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
...
</xsd:schema>
(I think the entire content of this file isn't important, it would just make this question too long)
And this is my file (videodes.xml) which I inserted into the database and which I want to have validated:
<?xml version="1.0" encoding="UTF-8"?>
<videodes xsi:noNamespaceSchemaLocation="videodes.xsd" xmlns=""
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
...
</videodes>
(again I don't think it's necessary to put here the entire content)
Unfortunately, validation doesn't work and I can insert invalid data into my videodes.xml. What Am I missing ? I guess my catalog.xml is the problem, but I don't know what I should put in it. I tried to search a lot but it wasn't any use.
I will appreciate any help because I really need to make this work.
Thank in advance.