xsd与xml关联总是不行
test1.xsd:
<?xml version="1.0" encoding="GB2312" ?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="a" type="xsd:string"/>
</xsd:schema>
test1.xml:
<?xml version = "1.0" encoding="GB2312" ?>
<?xml-stylesheet type="text/xsl" href="test1.xsl"?>
<a xmlns="test1.xsd">asdlf</a>
test1.xsl:
<?xml version="1.0" encoding="gb2312"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/"><xsl:apply-templates select="/a"/></xsl:template>
<xsl:template match="a"><xsl:value-of select="."></xsl:value-of><br /></xsl:template>
</xsl:stylesheet>
没有任何显示!求救