Specifying schema with stylesheet
How can one specify Schema(xsd) and Stylesheet(xsl) together in an xml file?
I tried doing that, but it gave me problems.
I used:
<note xmlns="http://www.w3schools.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3schools.com xsd1.xsd">
And also:
<?xml-stylesheet type="text/xsl" href="xsl1.xsl"?>

