ниже мой xsl
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ms="http://www.test.com/schemas/test" xmlns:ns="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="ms ns"> <xsl:output method="xml" indent="yes"/> <xsl:template match="/"> <XMLResponse> <xsl:apply-templates select="ms:ProductRS/ms:Product"/> </XMLResponse> </xsl:template> <-- some templates here --> </xsl:stylesheet>
В выводе я получаю как ниже
<?xml version="1.0" encoding="UTF-16"?> <XMLResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Product>-----</Product> </XMLResponse>
Мне нужно удалить xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" из вывода xml
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Чтобы исключить пространство имен, вы должны представить это следующим образом: -
exclude-result-prefixes="ms ns xsi "
exclude-result-prefixes="ms ns xsi
В основном ваша таблица стилей выглядит так: -
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ms="http://www.test.com/schemas/test" xmlns:ns="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="ms ns xsi">