I have the following XML file
<?xml version="1.0" encoding="UTF-8"?>
<CentralServerR equest>
<RequestInfo>
<ResponseFile Mode="Overwrite "></ResponseFile>
<StatusFile></StatusFile>
</RequestInfo>
</CentralServerRe quest>
I tried the following xslt code but can't seem to get it working.
response_file=e :/tmp/response.xml
status_file=d:/tmp/status.xml
<xsl:template match="StatusFi le[. = '' ">
<xsl:copy>
<xsl:value-of select="$status _file"/>
</xsl:copy>
</xsl:template
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"?>
<CentralServerR equest>
<RequestInfo>
<ResponseFile Mode="Overwrite ">e:/tmp/response.xml</
ResponseFile>
<StatusFile>d :/tmp/status.xml</StatusFile>
</RequestInfo>
</CentralServerRe quest>
Thanks in advance to all who answer
<?xml version="1.0" encoding="UTF-8"?>
<CentralServerR equest>
<RequestInfo>
<ResponseFile Mode="Overwrite "></ResponseFile>
<StatusFile></StatusFile>
</RequestInfo>
</CentralServerRe quest>
I tried the following xslt code but can't seem to get it working.
response_file=e :/tmp/response.xml
status_file=d:/tmp/status.xml
<xsl:template match="StatusFi le[. = '' ">
<xsl:copy>
<xsl:value-of select="$status _file"/>
</xsl:copy>
</xsl:template
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"?>
<CentralServerR equest>
<RequestInfo>
<ResponseFile Mode="Overwrite ">e:/tmp/response.xml</
ResponseFile>
<StatusFile>d :/tmp/status.xml</StatusFile>
</RequestInfo>
</CentralServerRe quest>
Thanks in advance to all who answer
Comment