Discuss this help topic in SecureBlackbox Forum

TElSAMLSOAPBinding.OnBeforeEnvelope

TElSAMLSOAPBinding     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This event is fired when a SOAP message has been prepared.

Declaration

[C#]
    event TSBSAMLBeforeSOAPEnvelope OnBeforeEnvelope;
    delegate void TSBSAMLBeforeSOAPEnvelope(Object Sender, TElXMLSOAPMessage Msg);

[VB.NET]
    Event OnBeforeEnvelope As TSBSAMLBeforeSOAPEnvelope
    Delegate Sub TSBSAMLBeforeSOAPEnvelope(ByVal Sender As Object, ByVal Msg As TElXMLSOAPMessage)

[Pascal]
    property OnBeforeEnvelope : TSBSAMLBeforeSOAPEnvelope;
    TSBSAMLBeforeSOAPEnvelope = procedure(Sender : TObject; Msg : TElXMLSOAPMessage) of object;

[C++]
    void get_OnBeforeEnvelope(TSBSAMLBeforeSOAPEnvelope &pMethodOutResult, void * &pDataOutResult);
    void set_OnBeforeEnvelope(TSBSAMLBeforeSOAPEnvelope pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSBSAMLBeforeSOAPEnvelope)(void * _ObjectData, TObjectHandle Sender, TElXMLSOAPMessageHandle Msg);

[PHP]
    TSBSAMLBeforeSOAPEnvelope|callable|NULL get_OnBeforeEnvelope()
    void set_OnBeforeEnvelope(TSBSAMLBeforeSOAPEnvelope|callable|NULL $Value)
    callable TSBSAMLBeforeSOAPEnvelope(TObject $Sender, TElXMLSOAPMessage $Msg)

[Java]
    TSBSAMLBeforeSOAPEnvelope getOnBeforeEnvelope();
    void setOnBeforeEnvelope(TSBSAMLBeforeSOAPEnvelope Value);
    TSBSAMLBeforeSOAPEnvelope.Callback OnBeforeEnvelope = new TSBSAMLBeforeSOAPEnvelope.Callback() {
        public void TSBSAMLBeforeSOAPEnvelopeCallback(TObject Sender, TElXMLSOAPMessage Msg) {
            //...
        }
    }

Parameters

  • Msg - the newly created SOAP message.

Description

This event is fired by TElSAMLSOAPBinding when it has enveloped a SAML message, and is going to save it.

Discuss this help topic in SecureBlackbox Forum