SoapUI programında "WS-Addressing" "true", belirli bir aksiyon ve "Add default wsa:To" seçili halde gönderilmesi istenilen servisler için uygulanabilecek XSLT.

<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> 
XML