<?xml version="1.0" encoding="UTF-8"?><xsl:stylesheetversion="1.0"xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"xmlns:tem="http://tempuri.org/"xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><xsl:outputencoding="UTF-8"indent="yes"method="xml"version="1.0"/><xsl:strip-spaceelements="*"/><!-- copies all elements from source xml--><xsl:templatematch="@*|node()"><xsl:copy><xsl:apply-templatesselect="@*|node()"/></xsl:copy></xsl:template><!-- deletes matched elements from source xml--><xsl:templatematch="username"><xsl:apply-templates/></xsl:template><!-- deletes matched elements from source xml--><xsl:templatematch="/soapenv:Envelope"><xsl:copy><!-- copies elements inside this definition to matched element's content --><soapenv:Body><tem:sendSingleSMS><tem:username>aaa</tem:username><tem:password>123</tem:password><tem:origin>localhost</tem:origin><xsl:copy-ofselect="//*[local-name() = 'numbers']"/><xsl:copy-ofselect="//*[local-name() = 'message']"/><xsl:copy-ofselect="//*[local-name() = 'startDate']"/><xsl:copy-ofselect="//*[local-name() = 'endDate']"/></tem:sendSingleSMS></soapenv:Body><xsl:apply-templates/></xsl:copy></xsl:template><xsl:templatematch="soapenv:Body"/></xsl:stylesheet>