XML Editor
Sign up for a WebBoard account Sign Up Keyword Search Search More Options... Options
Chat Rooms Chat Help Help News News Log in to WebBoard Log in Not Logged in
Conferences Close Tree View
+ Stylus Studio Feature Requests (1192)
+ Stylus Studio Technical Forum (14621)
+ Website Feedback (249)
- XSLT Help and Discussion (7625)
-> + Use of before and after string (3) Sticky Topic
-> - How do I substitute element ty... (1)
-> + How does one add working days ... (4)
-> - Help, I have existing XLT and... (1)
-> + Need help on XSLT issue - (2)
-> + EDI to XML Conversion (7)
-> - XML To JSON Conversion using X... (1)
-> + Formatting Paragraphs to same ... (2)
-> - Grouping of records (1)
-> + Problems with xsd 1.1 (4)
-> + XML to HL7 mapping (3)
-> + XSLT 3 and Iterate (2)
-> + XSL-FO to PDF preview (3)
-> + java.lang.RuntimeException: Er... (2)
-> + Create Acroforms with Stylus X... (2)
-> + How to change XSLT parameter s... (3)
-> + how to change format of the da... (2)
-> + Search "Next 8 Results " doesn... (2)
-> - Support for Git (1)
-> + newbee (8)
-- [1-20] [21-40] [41-60] Next
+ XQuery Help and Discussion (2017)
+ Stylus Studio FAQs (159)
+ Stylus Studio Code Samples & Utilities (364)
+ Stylus Studio Announcements (113)
Topic  
Postnext
Anant BadgujarSubject: How to Pass parameter to Xsl:Include href and assign parameter to href
Author: Anant Badgujar
Date: 04 Jun 2007 07:13 AM
Originally Posted: 04 Jun 2007 06:59 AM
I want to pass a parameter value to xsl:include href . This parameter value is a relative path picked up from the config file using C#.

The included file has some common functions which are used across multiple XSLT files.

This path is programmatically passed using the argument list for the xsl transform method.

Is there any other other way that I can include this file on runtime?

Postnext
(Deleted User) Subject: How to Pass parameter to Xsl:Include href and assign parameter to href
Author: (Deleted User)
Date: 04 Jun 2007 03:21 PM
Hi,
the xsl:include can only have a literal URI as location value; being evaluated at compile time, no variable or parameter can be used to change it dinamically.

Alberto

Posttop
Ivan PedruzziSubject: How to Pass parameter to Xsl:Include href and assign parameter to href
Author: Ivan Pedruzzi
Date: 04 Jun 2007 11:51 PM

Hi Anant,

The following code shows how to change your XSLT programmatically using a meta stylesheet


// Change XSLT programmatically
XmlReader xmlReader = XmlReader.Create("c:\\Temp\\MainInclude.xsl");
StringBuilder sb = new StringBuilder();
XmlWriter xmlWriter = XmlWriter.Create(sb);
XslCompiledTransform xslt = new XslCompiledTransform();
xslt.Load("c:\\Temp\\fixXSLInclude.xsl");
XsltArgumentList xsltArgs = new XsltArgumentList();
xsltArgs.AddParam("href", "", "c:\\temp\\myCommonInclude.xsl");
xslt.Transform(xmlReader, xsltArgs, xmlWriter);

// Run the modified stylesheet
XmlReader xslReader = XmlReader.Create(new StringReader(sb.ToString()));
xslt.Load(xslReader);
xmlReader = XmlReader.Create("c:\\Temp\\books.xml");
xmlWriter = XmlWriter.Create(Console.Out);
xslt.Transform(xmlReader, xmlWriter);



------------ fixXSLInclude.xsl

<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="href"/>

<xsl:template match="*">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:apply-templates select="node()"/>
</xsl:copy>
</xsl:template>

<xsl:template match="xsl:include">
<xsl:copy>
<xsl:attribute name="href">
<xsl:value-of select="$href"/>
</xsl:attribute>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>


Hope this helps
Ivan Pedruzzi
Stylus Studio Team

   
Download A Free Trial of Stylus Studio 6 XML Professional Edition Today! Powered by Stylus Studio, the world's leading XML IDE for XML, XSLT, XQuery, XML Schema, DTD, XPath, WSDL, XHTML, SQL/XML, and XML Mapping!  
go

Log In Options

Site Map | Privacy Policy | Terms of Use | Trademarks
Stylus Scoop XML Newsletter:
W3C Member
Stylus Studio® and DataDirect XQuery ™are from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2016 All Rights Reserved.