私はxmlとxsltが初めてです。
Web コーディングにクラシック ASP を使用しています。Web ページに Windows プラットフォームを使用しています。およびローカル コンピューター ID "localhost/mywebpage" で。
今日、xslt で xml ファイルを実行しようとしましたが、エラーが発生しました
msxml3.dll error '80004005'
Keyword xsl:template may not contain xsl:for-each-group.
以下は私の実行中のコードです
XMLで
<Lakes>
<Lake>
<id>1</id>
<Name>Caspian</Name>
<Type>Natyral</Type>
</Lake>
<Lake>
<id>2</id>
<Name>Moreo</Name>
<Type>Glacial</Type>
</Lake>
<Lake>
<id>3</id>
<Name>Sina</Name>
<Type>Artificial</Type>
</Lake>
</Lakes>
xslt (XSLT 2.0) で
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<xsl:for-each-group select="Lakes/Lake" group-by="Type">
<xsl:result-document href="file{position()}.xml">
<Lakes>
<xsl:copy-of select="current-group()"/>
</Lakes>
</xsl:result-document>
</xsl:for-each-group>
</xsl:template>
</xsl:stylesheet>
私のASPページ
<%
'load xml
set xml = server.createobject("microsoft.xmldom")
xml.async = false
xml.load(server.mappath("test.xml"))
'load xsl
set xsl = server.createobject("microsoft.xmldom")
xsl.async = false
xsl.load(server.mappath("test.xsl"))
set xdm= server.createobject("msxml2.domdocument")
xdm.async = false
xdm.loadxml(xml.transformnode(xsl))
xdm.save(server.mappath("test_r.xml"))
%>
xslt1.0 を xslt2.0 にアップグレードするには何が必要ですか?