Je n'arrive pas à utiliser ma XSL avec un xml dont le espace de nom est défini par défaut :
Le XML
Code :
- <?xml version="1.0" encoding="UTF-8"?>
- <?xml-stylesheet type='text/xsl' href='transform.xsl'?>
- <getPositionTreeReply xmlns="http//Services" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http//Services.xsd">
|
Le XSL
Code :
- <?xml version="1.0" encoding="utf-8"?>
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform " xmlns:sop="http//Services" version="1.0">
- <xsl:output method="html"/>
- <xsl:template match="/">
- <xsl:apply-templates select="sop:getPositionTreeReply/getPositionTreeSuccess/positionTree/portfolioId"/>
- [..]
- <xsl:template match="sop:getPositionTreeReply/getPositionTreeSuccess/positionTree/portfolioId">
|