On Jun 6, 9:12*am, Martin Honnen <mahotr...@yahoo.dewrote:
paul_0...@yahoo.com wrote:
Can somebody show me how to insert values associated with a variable
into the XML so the output will look like this:
<?xml version="1.0" encoding="UTF-8"?>
<CentralServerRequest>
* * <RequestInfo>
* * * * <ResponseFile Mode="Overwrite">e:/tmp/response.xml</
ResponseFile>
* * * * <StatusFile>d:/tmp/status.xml</StatusFile>
* * </RequestInfo>
</CentralServerRequest>
Here is a sample stylesheet that uses the identity transformation
template and two templates to modify the ResponseFile and StatusFile
elements:
<xsl:stylesheet
* *xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
* *version="1.0">
* *<xsl:param name="response_file" select="'e:/tmp/response.xml'"/>
* *<xsl:param name="status_file" select="'d:/tmp/status.xml'"/>
* *<xsl:template match="@* | node()">
* * *<xsl:copy>
* * * *<xsl:apply-templates select="@* | node()"/>
* * *</xsl:copy>
* *</xsl:template>
* *<xsl:template match="ResponseFile[not(node())]">
* * *<xsl:copy>
* * * *<xsl:value-of select="$response_file"/>
* * *</xsl:copy>
* *</xsl:template>
* *<xsl:template match="StatusFile[not(node())]">
* * *<xsl:copy>
* * * *<xsl:value-of select="$status_file"/>
* * *</xsl:copy>
* *</xsl:template>
</xsl:stylesheet>
--
* * * * Martin Honnen
* * * *http://JavaScript.FAQTs.com/
Martin,
The example for Statusfile works but the example for the ResponseFile
does not work.
Note the elments are a bit different since there is an attrtibute
"Mode" in the ResponseFile element
as there is no attribute in the StatusFile element.
<?xml version="1.0" encoding="UTF-8"?>
<CentralServerRequest>
<RequestInfo>
<ResponseFile Mode="Overwrite"></ResponseFile>
<StatusFile></StatusFile>
</RequestInfo>
</CentralServerRequest>
Based on that, I am assumming the XSLT code has to look a bit
different when doing the match? Is there some sytnax to specify the
atttibute name in the matc?. It would be okay with matching
"ResponseFile Mode" and skipping the value "OverWrite" since my Mode
can have several different
values that I may want to ignore.
THanks in advance for all your help!!!