This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

XML & XSL with IE5


Hello!  

I have an XML file and another one XSL.  I haven't achieved to open the
XML file with Internet Explorer 5 and to see its datas.  The XML file
point to XSL.

The content of the XML is:

<?xml version="1.0" ?>
<?xml-stylesheet type="text/xsl" href="prueba1.xsl"?>
<employee id="03432">
  <name>Joe Shmo</name>
  <title>Manager</title>
</employee>


And of the XSL:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
  <xsl:template match="/">
    <html>
      <body>
        <p>
          <b>
            <xsl:value-of select="employee/name"/>
          </b>
          <xsl:text>: </xsl:text>
          <xsl:value-of select="employee/title"/>
        </p>
      </body>
    </html>
  </xsl:template>
</xsl:stylesheet>

When I open the XML file and IE5 open it, the result in the explorer is:

: 

IE5 don't read the data of the XML file and I donīt know why!  I have
check with anothers XML/XSL and it occurs me the same.

Thank you very much,

Oscar


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]