Documentation Index
Fetch the complete documentation index at: https://docs.apinizer.com/llms.txt
Use this file to discover all available pages before exploring further.
XSLT kullanarak WS-Addressing (WSA) ayarlarını belirli değerlerle SOAP header’a ekleyebilir. SoapUI’da WS-Addressing true, belirli bir aksiyon ve default wsa:To seçili halde gönderilmesi gereken servisler için kullanılabilir.
Documentation Index
Fetch the complete documentation index at: https://docs.apinizer.com/llms.txt
Use this file to discover all available pages before exploring further.
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/" xmlns:wsa="http://www.w3.org/2005/08/addressing">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" />
<xsl:strip-space elements="*" />
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()" />
</xsl:copy>
</xsl:template>
<xsl:template match="/soap:Envelope">
<xsl:copy>
<soap:Header>
<wsa:Action>
#Gönderilmesi istenen Aksiyon#
</wsa:Action>
<wsa:To>
#wsdl'de yazan "To" adresi#
</wsa:To>
</soap:Header>
<xsl:apply-templates />
</xsl:copy>
</xsl:template>
<xsl:template match="soap:Header" />
</xsl:stylesheet>
Bu sayfa yararlı mıydı?