Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to read an XML present inside an XML tag. Problem is I can't use Saxon XSLT processor as our prod system does not support. Also we are using Xalan C++ libraries to transform support EXSLT but bare minimum.

The below example would explain it.

Maybe I am missing something important here.

------------------ My Simplified XML ---------------------------------------

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" >
<soap:Body>
<TransmitXML xmlns="http://xmlexchangeservice.com/">
<InputXML>&lt;?xml version="1.0" encoding="utf-8"?&gt;
            &lt;tns:CoverageRequest xmlns:X12.7="urn:x12:schemas:V00200806:X12.7" xmlns:tns="urn:schemas:x12:org:V00200806:CoverageRequest" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" PublicationVersion="00200809" PublicationDate="1984-02-12"&gt;
                &lt;tns:RequestorInformation&gt;
                    &lt;tns:Organization&gt;
                        &lt;tns:Name&gt;Florida&lt;/tns:Name&gt;
                    &lt;/tns:Organization&gt;
                    &lt;tns:ReasonDetails&gt;
                        &lt;tns:ReasonCode&gt;ACCV&lt;/tns:ReasonCode&gt;
                    &lt;/tns:ReasonDetails&gt;
                &lt;/tns:RequestorInformation&gt;
            &lt;/tns:CoverageRequest&gt;            
</InputXML>
<XMLSchemaVersion>V00200806-ServiceRequest</XMLSchemaVersion>
</TransmitXML>
</soap:Body>
</soap:Envelope>

------------------------- My XSLT ------------------------------------

I am trying to read the XML as node-set present inside “InputXML”

<xsl:stylesheet 
version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:al="http://xmlexchangeservice.com/"
xmlns:exsl="http://exslt.org/common"
extension-element-prefixes="exsl" >
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" omit-xml-declaration="no"/>


<xsl:template match="/">
<xsl:variable  name="nodeval" >
<xsl:value-of select="soap:Envelope/soap:Body/al:TransmitXML/al:InputXML" disable-output-escaping="yes"  />
</xsl:variable>
<xsl:element name="Testing">
<xsl:value-of  select="exsl:node-set($nodeval)/tns:CoverageRequest/tns:RequestorInformation/tns:Organization/tns:Name" />
<!-- What I really want is to parse the XML inside the “InputXML" like some where below
<xsl:apply-templates select="exsl:node-set($nodeval)/tns:CoverageRequest"/>   -->        
</xsl:element>
</xsl:template>
</xsl:stylesheet>

-------------------------- The output should be ------------------------------------

<?xml version="1.0" encoding="UTF-8"?>
<Testing>
Florida
</Testing>

How do I parse the XML within the “InputXML” tag?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.