XML & XSL with IE5

Subject: XML & XSL with IE5
From: "Soria, Oscar" <osoria@xxxxxxxxx>
Date: Thu, 24 Aug 2000 10:47:01 +0200
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


Current Thread