Elimina l’imbustamento SOAP Envelope dal messaggio di response

<?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" exclude-result-prefixes="msxsl" xmlns:ns0="urn:SPLA_LOGISTIC_SAP_COMMESSE" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
	<xsl:output method="xml" indent="yes"/>
	<xsl:template match="/">
		<xsl:apply-templates select="soapenv:Envelope/soapenv:Body"/>
	</xsl:template>
	<xsl:template match="soapenv:Body">
		<xsl:copy-of select="*"/>
	</xsl:template>
</xsl:stylesheet>