Hi Tomar,
Use below XSLT mapping to remove SOAP envelope tags.
<?xml version="1.0" encoding="utf-8"?><xsl:stylesheet version="1.0" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="@*|node()"> <xsl:copy> <xsl:apply-templates select="@*|node()"/> </xsl:copy> </xsl:template> <xsl:template match="SOAP-ENV:*"> <xsl:apply-templates select="@* | node()"/> </xsl:template></xsl:stylesheet>
Regards,
Praveen.