Hello,
I am looking for a way to get the value of an attributes declared as fixed
in my w3c schema, from a stylesheet...
Something like this :
*) unit.xsd
<xs:complexType name="m">
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="unit�" type="xs:string" fixed="m"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:element name="DIAM_ANALYSE" type="m"/>
*) unit.xml
<DIAM_ANALYSE>3.14159</DIAM_ANALYSE>
*) unit.xsl
<xsl:value-of select="DIAM_ANALYSE/@unit�"/>
I tried to load the unit.xml as a DOMSource by using Xerces2 parser
with features like
parser.setFeature("http://apache.org/xml/features/validation/schema-full-checking",true);
parser.setFeature("http://apache.org/xml/features/validation/schema",true);
parser.setFeature("http://xml.org/sax/features/namespaces", true);
parser.setFeature("http://apache.org/xml/features/validation/schema/normalized-value",true
);
parser.setFeature("http://apache.org/xml/features/validation/schema/element-default",true)
;
but the attribute value seems to be not accessible in my stylesheet.
Any idea ?
Thanks in advance
Regards
-- bruno --
Bruno Chatel
Tel : (+33)[0] 4 96 11 14 57
Email : [EMAIL PROTECTED]
http://www.chadocs.com
----------------------------------------