Hi, Is there any way to see the keys stored by an xsl:key declaration?
I'm trying to do the following.... <xsl:key name="keyCodeLists" match="//odm:CodeList" use="concat(ancestor::odm:Study/@OID, ancestor::odm:MetaDataVersion/@OID, @OID)"/> ...then later on in the stylesheet key('items', concat($a, $b, $c)) I've verified that $a, $b, and $c are as expected but the call to the key function returns nothing. Presumably, xalan builds some sort of hashtable to implement this feature. Is there a method of inspecting the contents of the hashtable (or at least its keys) or dumping it to a file somewhere? Cheers, Andy