Just make the change below to your "xsl:apply-templates" line:
<xsl:apply-templates select="*/ja:foo/ja:item"/>
Because the jabber doc has a default namespace you need to provide a prefix in the XSLT, which you do. But you need to use that prefix on all elements in the default namespace, which includes the 'item' elements.
Hope that helps!
|