Discuss this help topic in SecureBlackbox Forum

TElSAMLSOAPBinding.Detect

TElSAMLSOAPBinding     


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


Detects what kind of SAML protocol message is carried within given communication protocol message.

Declaration

[C#]
    static TSBSAMLDataType Detect(string Buf, out string Proto);

[VB.NET]
    Shared Function Detect(ByVal Buf As String, Out Proto As String) As TSBSAMLDataType

[Pascal]
    class function Detect(const Buf : string; out Proto : string) : TSBSAMLDataType; static;

[C++]
    static TSBSAMLDataType Detect(const std::string &Buf, std::string &Proto);

[PHP]
    integer Detect(string $Buf, string &$Proto)

[Java]
    static TSBSAMLDataType detect(String Buf, TSBString Proto);

Parameters

  • Buf - the SOAP message.
  • Proto - the name of the message element representing the SAML protocol message.

Return value

Returns the type of SAML protocol message enclosed, and the name of the corresponding element.

TSBSAMLDataType values

Description

Use this method to detect what kind of SAML protocol message is carried by the given SOAP message.

Discuss this help topic in SecureBlackbox Forum