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 figure out how to grab everything, including the XML tags, from the body of a soap message.

Here is what I have so far:

<?xml version="1.0" encoding="utf-8"?>
    <xsl:stylesheet version="1.0" 
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
        xmlns:msxsl="urn:schemas-microsoft-com:xslt" 
        xmlns:soap="http://soap/envelope/"
    >
    <xsl:output method="xml" indent="no"/>

    <xsl:template match="//soap:Body/*">
    </xsl:template>
</xsl:stylesheet>
share|improve this question

1 Answer

up vote 2 down vote accepted

The following stylesheet:

<xsl:stylesheet version="1.0" 
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:soap="http://www.w3.org/2003/05/soap-envelope"
    xmlns:m="http://www.example.org/stock">
    <xsl:template match="/">
        <xsl:apply-templates select="soap:Envelope/soap:Body/*"/>
    </xsl:template>
    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>
</xsl:stylesheet>

Applied to this SOAP example from Wikipedia:

<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
    <soap:Header></soap:Header>
    <soap:Body>
        <m:GetStockPrice xmlns:m="http://www.example.org/stock">
            <m:StockName>IBM</m:StockName>
        </m:GetStockPrice>
    </soap:Body>
</soap:Envelope>

Outputs the contents of the SOAP body (not including the body element itself):

<m:GetStockPrice xmlns:m="http://www.example.org/stock" 
                 xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
    <m:StockName>IBM</m:StockName>
</m:GetStockPrice>
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.