Hi,
I am trying to use a change-set file to load my DSL and DSLR resources, but I am not able to get it working.
<?xml version="1.0" encoding="UTF-8"?>
<add>
<resource source='file:classification.dsl' type='DSL' />
<resource source='file:classification.drl' type='DSLR' />
</add>
</change-set>
but I received the following error:
(null: 4, 78): cvc-elt.1: Cannot find the declaration of element 'change-set'.
where it was suggested to
So I changed my file to:
<?xml version="1.0" encoding="UTF-8"?>
<add>
<resource source='file:classification.dsl' type='DSL' />
<resource source='file:classification.dslr' type='DSLR' />
</add>
</change-set>
but now I receive the following errors:
(null: 4, 100): schema_reference.4: Failed to read schema document 'drools-change-set-5.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.
(null: 4, 100): cvc-elt.1: Cannot find the declaration of element 'change-set'.
(null: 5, 9): schema_reference.4: Failed to read schema document 'drools-change-set-5.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.
(null: 6, 63): schema_reference.4: Failed to read schema document 'drools-change-set-5.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.
(null: 7, 65): schema_reference.4: Failed to read schema document 'drools-change-set-5.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.
What am I missing?
Thanks.
Raf