Your processing instruction is incorrect, it should be
Code:
<?xml-stylesheet type="text/xsl" href="SampleStyleSheet.xsl" ?>
.
Of course this stylesheet won't use any of the values in the document, you could change the company template to:
Code:
<xsl:template match="company">
<p><xsl:value-of select="companyname"/></p>
</xsl:template>
to see some data.
--
Joe (Co-author Beginning XML, 3rd edition)