What would cause a XML schema definition to prevent how elements display. I have a XSLT file and a XML file that point to a stadnard schema for a given industry. If I remove the schema information from the XML, my information displays just fine within a browser. But if I include the schema information, every single element displays within the browser. I have included the XSLT and a sample of the XML. Any suggestion would be grealty appreacited.
XSLT
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="<xsl
utput method="html"/>
<xsl:template match="//BatchInformation/MasterRecipe">
<xsl:apply-templates select="RecipeElement"/>
</xsl:template>
<xsl:template match="RecipeElement">
<xsl:for-each select="Header/ModificationLog">
<xsl:value-of select="ModifiedDate"/>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
XML
<?xml version="1.0" encoding="UTF-8"?>
<BatchInformation xmlns=" xmlns:xsi=" xsi:schemaLocation="BatchML-V02.xsd">
<MasterRecipe>
<RecipeElement>
<Header>
<ModificationLog>
<ModifiedDate>String</ModifiedDate>
<Description>String</Description>
<Description>String</Description>
<Author>String</Author>
<Any/>
<Any/>
</ModificationLog>
<ModificationLog>
<ModifiedDate>String</ModifiedDate>
<Description>String</Description>
<Description>String</Description>
<Author>String</Author>
<Any/>
<Any/>
</ModificationLog>
</Header>
</RecipeElement>
</MasterRecipe>
</BatchInformation>
XSLT
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="<xsl
<xsl:template match="//BatchInformation/MasterRecipe">
<xsl:apply-templates select="RecipeElement"/>
</xsl:template>
<xsl:template match="RecipeElement">
<xsl:for-each select="Header/ModificationLog">
<xsl:value-of select="ModifiedDate"/>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
XML
<?xml version="1.0" encoding="UTF-8"?>
<BatchInformation xmlns=" xmlns:xsi=" xsi:schemaLocation="BatchML-V02.xsd">
<MasterRecipe>
<RecipeElement>
<Header>
<ModificationLog>
<ModifiedDate>String</ModifiedDate>
<Description>String</Description>
<Description>String</Description>
<Author>String</Author>
<Any/>
<Any/>
</ModificationLog>
<ModificationLog>
<ModifiedDate>String</ModifiedDate>
<Description>String</Description>
<Description>String</Description>
<Author>String</Author>
<Any/>
<Any/>
</ModificationLog>
</Header>
</RecipeElement>
</MasterRecipe>
</BatchInformation>