> How do I catch Elements with a particular local name, > regardless of the used namespace: > > I want to catch all included Elements, but some are in a defaulted > namespace> > [...]
By using the XPath local-name() function, eg: <xsl:apply-templates select="*[local-name()='included']"> ... </xsl:apply-templates> (Example stolen from Michael Kay's XSLT Programmer's Reference, p484.) Ed Blachman Trellix Corporation
