Discuss this help topic in SecureBlackbox Forum

TElSAMLBinding.SaveArtifact

TElSAMLBinding     See also     


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


Saves the artifact value in the form of a SAML message.

Declaration

[C#]
    string SaveArtifact(byte[] Artifact);

[VB.NET]
    Function SaveArtifact(ByVal Artifact As Byte()) As String

[Pascal]
    function SaveArtifact(const Artifact : ByteArray) : string; virtual;

[C++]
    void SaveArtifact(const std::vector<uint8_t> &Artifact, std::string &OutResult);

[PHP]
    string SaveArtifact(array of byte|string|NULL $Artifact)

[Java]
    String saveArtifact(byte[] Artifact);

Parameters

  • Artifact - the artifact value.

Return value

Returns the SAML message.

Description

Use this method to save the artifact value into an exchange-ready communication protocol message. The actual implementation and return value depend on the type of binding. For instance, in case of HTTP redirect binding a URL is returned.

See also:     LoadArtifact    

Discuss this help topic in SecureBlackbox Forum