Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old January 5th, 2010, 10:31 AM
Authorized User
 
Join Date: Dec 2009
Posts: 23
Thanks: 3
Thanked 0 Times in 0 Posts
Default Unknown XSLT element:result-document

When I am using <xsl:result-document> tag in following XSLT it gives me error that Unknown XSLT element :result -document.

I am using Saxon6.5.5 Transformer and i want to split XML file into multiple XML document .

What i should do to use result-document ??

Code:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet 
     xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
     version="2.0">
     
     <xsl:output method="text"/>
     <xsl:output method="html" indent="yes" name="html"/>
     
     <xsl:template match="/">
          <xsl:for-each select="//testrun">
               <xsl:variable name="filename"
                    select="concat('c:/output1/',@run,'.html')" />
               <xsl:value-of select="$filename" />  
               <xsl:result-document href="{$filename}" format="html">
                    <html><body>
                         <xsl:value-of select="@run"/>
                    </body></html>
               </xsl:result-document>
          </xsl:for-each>
     </xsl:template>
</xsl:stylesheet>
Thanks in Advance .
 
Old January 5th, 2010, 10:41 AM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

>What i should do to use result-document

Use an XSLT 2.0 processor, for example Saxon 9.2
__________________
Michael Kay
http://www.saxonica.com/
Author, XSLT 2.0 and XPath 2.0 Programmer\'s Reference
 
Old January 6th, 2010, 07:34 AM
Authorized User
 
Join Date: Dec 2009
Posts: 23
Thanks: 3
Thanked 0 Times in 0 Posts
Thumbs up

Thanks a lot for your help.Its really useful.





Similar Threads
Thread Thread Starter Forum Replies Last Post
find last element of document mvittalreddy XSLT 1 May 20th, 2009 12:01 AM
grouping and result-document help mrame XSLT 2 October 21st, 2008 11:01 PM
SAXON - result-document bonekrusher XSLT 3 May 7th, 2007 08:27 AM
xsl:result-document instruction bonekrusher XSLT 3 April 12th, 2007 06:01 PM
literal result element <head> pietdemeester BOOK: XSLT Programmer's Reference, 2nd Edition 0 June 21st, 2003 08:13 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.