Discuss this help topic in SecureBlackbox Forum

SOAP: Change digest method for references

To set the digest method for references, added using AddReference() method, you need to use ReferencesDigestMethod property.

The code below sets handler's digest algorithm to SHA256:

C#:


Handler.ReferencesDigestMethod = SBXMLSec.Unit.xdmSHA256;
Handler.AddReference(...);

Delphi:

Handler.ReferencesDigestMethod := xdmSHA256;
Handler.AddReference(...);

How To articles about SOAP messages

Discuss this help topic in SecureBlackbox Forum