<?xml version="1.0" encoding="utf-8"?> 
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://www.w3.org/2001/12/soap-envelope"
    xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
    xmlns:xenc="http://www.w3.org/2001/04/xmlenc#"
    xmlns:wsu="http://schemas.xmlsoap.org/ws/2003/06/utility">
    <SOAP-ENV:Header>
        <wsse:Security
            xmlns:wsse="http://schemas.xmlsoap.org/ws/2003/06/secext">

            <wsse:BinarySecurityToken
                wsu:Id="myCertificate"
                ValueType="wsse:X509v3"
                EncodingType="wsse:Base64Binary">
                FIfB3sgwMzA9CgIBAgEmtc0rqaQrKhi... 
            </wsse:BinarySecurityToken>

           <wsse:BinarySecurityToken
                wsu:Id="yourCertificate"
                ValueType="wsse:X509v3"
                EncodingType="wsse:Base64Binary">
                GhjkahHHKJKjlkjKJLKJKJkKKy8776... 
            </wsse:BinarySecurityToken>

            <ds:Signature>
                <ds:SignedInfo>
                    <ds:CanonicalizationMethod
                        Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/>
                    <ds:SignatureMethod
                        Algorithm="http://www.w3.org/2000/09/xmldsig#hmac-sha1"/>
                    <ds:Reference URI="#MyMessageBody">
                        <ds:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
                        <ds:DigestValue>JwFsd3eQc0iXlJm5PkLh7...</ds:DigestValue>
                    </ds:Reference>
                </ds:SignedInfo>
                <ds:SignatureValue>BSxlJbSiFdm5Plhk...</ds:SignatureValue>
                <ds:KeyInfo>
                    <wsse:SecurityTokenReference>
                         <wsse:Reference URI="#myCertificate"/>
                    </wsse:SecurityTokenReference>
                </ds:KeyInfo>
            </ds:Signature>

            <xenc:EncryptedKey
                wsu:Id="mySymmetricKey">
                <xenc:EncryptionMethod
                    Algorithm="http://www.w3.org/2001/04/xmlenc#rsa-1_5"/>
                 <ds:KeyInfo>
                    <wsse:SecurityTokenReference>
                         <wsse:Reference URI="#yourCertificate"/>
                    </wsse:SecurityTokenReference>
                </ds:KeyInfo>
                <xenc:CipherData>
                    <xenc:CipherValue>G2wDCq24FsgBGerE...</xenc:CipherValue>
                </xenc:CipherData>
                <xenc:ReferenceList>
                    <xenc:DataReference URI="#EncryptedDiscountResponse"/>
                </xenc:ReferenceList>
            </xenc:EncryptedKey>

        </wsse:Security>
    </SOAP-ENV:Header>

    <SOAP-ENV:Body wsu:Id="MyMessageBody">

        <s:GetSpecialDiscountedBookingForPartnersResponse
            xmlns:s=“http://www.MyHotel.com/partnerservice”>
            <xenc:EncryptedData
                  wsu:Id="EncryptedDiscountResponse"
                type="http://www.w3.org/2001/04/xmlenc#Element">
                <xenc:EncryptionMethod
                    Algorithm="http://www.w3.org/2001/04/xmlenc#rsa-1_5"/>
                <CipherData>
                <CipherValue>XD6sFa0DrWsHdehrHdhcW0x...</CipherValue>
                </CipherData>
            </xenc:EncryptedData>
        </s:GetSpecialDiscountedBookingForPartnersResponse>
    </SOAP-ENV:Body>

</SOAP-ENV:Envelope>