P
paul_0403
I have the following XML file
<?xml version="1.0" encoding="UTF-8"?>
<CentralServerRequest>
<RequestInfo>
<ResponseFile Mode="Overwrite"></ResponseFile>
<StatusFile></StatusFile>
</RequestInfo>
</CentralServerRequest>
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="StatusFile[. = '' ">
<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"?>
<CentralServerRequest>
<RequestInfo>
<ResponseFile Mode="Overwrite">e:/tmp/response.xml</
ResponseFile>
<StatusFile>d:/tmp/status.xml</StatusFile>
</RequestInfo>
</CentralServerRequest>
Thanks in advance to all who answer
<?xml version="1.0" encoding="UTF-8"?>
<CentralServerRequest>
<RequestInfo>
<ResponseFile Mode="Overwrite"></ResponseFile>
<StatusFile></StatusFile>
</RequestInfo>
</CentralServerRequest>
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="StatusFile[. = '' ">
<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"?>
<CentralServerRequest>
<RequestInfo>
<ResponseFile Mode="Overwrite">e:/tmp/response.xml</
ResponseFile>
<StatusFile>d:/tmp/status.xml</StatusFile>
</RequestInfo>
</CentralServerRequest>
Thanks in advance to all who answer