cannot find the declaration of element xsl:stylesheet
Posted: Thu Aug 07, 2008 11:38 am
Hello,
i haven't worked with Oxygen and the xsd/xsl's i am working with in a while, but i somehow get the following error message while validating the xsl:
Description Resource Path Location Type
[Xerces] cvc-elt.1: Cannot find the declaration of element 'xsl:stylesheet'.
@see: http://www.w3.org/TR/xmlschema-1/#cvc-elt ltsml_to_dot.xsl ltsml-xslt/src line 2 XML Problem
This already happens with the following minimal version of a stylesheet:
I hope someone has an idea what is wrong here. After a quick google search i came up with a schema for xsl, but including it in the xml catalog somehow didn't have the expected effect (or maybe i did something wrong).
i haven't worked with Oxygen and the xsd/xsl's i am working with in a while, but i somehow get the following error message while validating the xsl:
Description Resource Path Location Type
[Xerces] cvc-elt.1: Cannot find the declaration of element 'xsl:stylesheet'.
@see: http://www.w3.org/TR/xmlschema-1/#cvc-elt ltsml_to_dot.xsl ltsml-xslt/src line 2 XML Problem
This already happens with the following minimal version of a stylesheet:
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:lml="http://www.trex.informatik.uni-goettingen.de/ltsml"
xsi:schemaLocation="http://www.trex.informatik.uni-goettingen.de/ltsml http://www.trex.informatik.uni-goettingen.de/ltsml/ltsml.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>
</xsl:stylesheet>