我正在尝试制作XSL文件,以使用在线XML资源中的数据更新现有XML文件。
原始XML文件和XSL位于localhost(使用http)上,而我的在线资源(另一个包含新内容的XML文件)位于https://example.com/xml/update.xml
XSL看起来像这样:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:gmd="http://www.isotc211.org/2005/gmd"
xmlns:gco="http://www.isotc211.org/2005/gco"
http://schemas.opengis.net/iso/19139/20060504/srv/srv.xsd">
<xsl:output method="xml" indent="yes"/>
<!-- Identity template, copies everything as is -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<!-- Override for target element -->
<xsl:template match="gmd:MD_DataIdentification/gmd:citation/gmd:CI_Citation">
<!-- Copy the element -->
<xsl:copy>
<!-- And everything inside it -->
<xsl:apply-templates select="@*|node()"/>
<xsl:for-each select="document('https://example.com/xml/update.xml')/newData">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:for-each>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
在localhost上查看XML文件时出现以下错误:
Unsafe attempt to load URL https://example.com/xml/update.xml from frame with URL http://localhost/tutorial/metadata/ENVI_Natura2000.xml. Domains, protocols and ports must match.
有什么方法可以修改XSL文档以绕过此操作吗?