Elimina l’imbustamento SOAP Envelope dal messaggio di response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
<?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> |