xsl代码如下
<xsl:template match="/">
<xsl:for-each select="/t:Flow/t:AccountingRecords/t:AccountingRecord">
<xsl:result-document method="xml" href="UBL-invoice.2.1-{t:Reference}-output.xml">
<xsl:apply-templates select="."/>
</xsl:result-document>
</xsl:for-each>
</xsl:template>
使用transform
在命令行上运行良好
现在我尝试从.net应用程序使用它,但出现以下错误:
$ exception {“主体输出文件的系统标识符未知”} Saxon.Api.DynamicError
如果我将代码更改为
<xsl:result-document method="xml" href="file:///d:/temp/UBL-invoice.2.1-{t:Reference}-output.xml">
<xsl:apply-templates select="."/>
</xsl:result-document>
然后我得到了文件。
我的问题是:有没有一种方法可以处理来自应用程序的相对路径,或者我必须在我的xsl中添加dir参数吗?
我的代码完全是示例中的代码
Processor proc = new Processor();
var comp = proc.NewXsltCompiler();
Xslt30Transformer exe = comp.Compile(new Uri("file:///" + System.IO.Path.GetFullPath("./Styles/style.xslt"))).Load30();
DocumentBuilder builder = proc.NewDocumentBuilder();
builder.BaseUri = new Uri("file:///" + System.IO.Path.GetFullPath("./ar2.xml"));
XdmNode inp = builder.Build(System.IO.File.OpenRead(System.IO.Path.GetFullPath("./ar2.xml")));
Serializer serializer = proc.NewSerializer();
serializer.SetOutputWriter(Console.Out);
// Transform the source XML and serialize the result document
exe.ApplyTemplates(inp, serializer); // < ==== Exception here
答案 0 :(得分:1)
在BaseOutputURI
对象上设置Xslt30Transformer
属性。它将用作解决出现在xsl:result-document/@href
中的相对URI的基础URI。