Re: [xsl] Create XML

Subject: Re: [xsl] Create XML
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 17 Apr 2008 10:36:09 +0100
> I am doing stylesheets with XSLT 2.0 and I execute they with JAXP (Saxon).
> Depends on the result of the templates, I need to write XML elements,


You'll need to describe what you are doing, to generate 

<Article  id="abc">
     <author type="string">Joan Smith</author>
</Article>

using XSLT you can use the syntax


<Article  id="abc">
     <author type="string">Joan Smith</author>
</Article>

so presumably you have a different problem?

David

Current Thread