johkar wrote:
> Given that all the nodes in my XML document have the "dsml" namespace,
> what is the XSL syntax to access the elements or apply templates?
Define a prefix in your stylesheet which maps to that namespace, and use
that prefix in your XPaths, like so:
<xsl:stylesheet ... xmlns:dsml="urn

asis:names:tc

SML:2:0:core" ...>
...
<xsl:template match="dsml:batchResponse">
<xsl:apply-templates select="//dsml:value"/>
</xsl:template>
...
<xsl:stylesheet>
and so on.
Standard pointer to the many tutorials/articles on
http://www.ibm.com/xml, since this is a question that any decent XSLT
tutorial should have answered.
--
Joe Kesselman / Beware the fury of a patient man. -- John Dryden