SecureBlackbox 2020 Python Edition

Questions / Feedback?

on_resolve_reference Event

Asks the application to resolve a reference.

Syntax

class SOAPSignerResolveReferenceEventParams(object):
  @property
  def uri() -> str: ...
  @property
  def reference_index() -> int: ...

# In class SOAPSigner:
@property
def on_resolve_reference() -> Callable[[SOAPSignerResolveReferenceEventParams], None]: ...
@on_resolve_reference.setter
def on_resolve_reference(event_hook: Callable[[SOAPSignerResolveReferenceEventParams], None]) -> None: ...

Remarks

This event is fired when the control could not automatically resolve a reference and requires custom treatment.

URI contains a reference to the data.

ReferenceIndex specifies the index of the reference to process.

Based on the reference's URI the event handler should set either TargetXMLElement or TargetData property of the reference.

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox 2020 Python Edition - Version 20.0 [Build 8154]