Tengo un XML que estoy tratando de transformar a HTML usando XSLT, pero no puedo hacer que funcione por mi vida. ¿Puede alguien decirme qué estoy haciendo mal?XSLT Transform XML with Namespaces
XML
<ArrayOfBrokerage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.test.com/">
<Brokerage>
<BrokerageID>91</BrokerageID>
<LastYodleeUpdate>0001-01-01T00:00:00</LastYodleeUpdate>
<Name>E*TRADE</Name>
<Validation i:nil="true" />
<Username>PersonalTradingTesting</Username>
</Brokerage>
</ArrayOfBrokerage>
XSLT
<xsl:stylesheet version="1.0" xmlns="http://www.test.com/" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xslFormatting="urn:xslFormatting">
<xsl:output method="html" indent="no"/>
<xsl:template match="/ArrayOfBrokerage">
<xsl:for-each select="Brokerage">
Test
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
Esto funcionó para mí también en las pruebas (ejecución de depuración XSLT en Visual Studio 2008) – Murph
Esto hizo el truco. Había intentado esto con la combinación de exclude-result-prefixes = "t" porque pensé que me permitiría no tener que virar t: antes de cada nodo. ¿Hay alguna forma de evitar tener que hacer esto? – Chris
No creo que exista. –