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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
<?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="n0:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl" > <xsl:output method="xml" indent="yes"/> <xsl:template match="/"> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:xsd="http://www.w3.org/1999/XMLSchema" xmlns:n0="n0:SPLA_LOGISTIC_SAP_COMMESSE"> <SOAP-ENV:Header> <n0:AuthenticationInfo> <n0:userName>Web_Service_SAP</n0:userName> <n0:password>9786</n0:password> <n0:authentication></n0:authentication> <n0:locale></n0:locale> <n0:timeZone></n0:timeZone> </n0:AuthenticationInfo> </SOAP-ENV:Header> <SOAP-ENV:Body> <xsl:copy-of select="*"/> </SOAP-ENV:Body> </SOAP-ENV:Envelope> </xsl:template> </xsl:stylesheet> |