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
在BaseOutputURI
对象上设置Xslt30Transformer
属性。这将用作解析xsl:result-document/@href
中出现的相对URI的基URI。