XSL transformation - Namespace prefix undeclared

后端 未结 1 888
长情又很酷
长情又很酷 2021-01-15 00:11

I have an XSL file by which I would like to convert an XML file. This XML file has been obtained renaming the original file which had .safe extension. here you can see its f

相关标签:
1条回答
  • 2021-01-15 01:03

    You must include

    xmlns:safe="http://www.esa.int/safe/sentinel-1.0"
    

    in your xslt, best at top level:

    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
        xmlns:safe="http://www.esa.int/safe/sentinel-1.0" ...
    
    0 讨论(0)
提交回复
热议问题