IPWorks MQ 2020 Python Edition

Questions / Feedback?

on_ssl_client_authentication Event

Fired when the client presents its credentials to the server.

Syntax

class AzureRelayProxySSLClientAuthenticationEventParams(object):
  @property
  def connection_id() -> int: ...
  @property
  def cert_encoded() -> bytes: ...
  @property
  def cert_subject() -> str: ...
  @property
  def cert_issuer() -> str: ...
  @property
  def status() -> str: ...
  @property
  def accept() -> bool: ...
  @accept.setter
  def accept(value) -> None: ...

# In class AzureRelayProxy:
@property
def on_ssl_client_authentication() -> Callable[[AzureRelayProxySSLClientAuthenticationEventParams], None]: ...
@on_ssl_client_authentication.setter
def on_ssl_client_authentication(event_hook: Callable[[AzureRelayProxySSLClientAuthenticationEventParams], None]) -> None: ...

Remarks

This is where the server can decide whether to continue or not. The Accept parameter is a recommendation on whether to continue or close the connection. This is just a suggestion: application software must use its own logic to determine whether to continue or not.

When Accept is False, Status shows why the verification failed (otherwise, Status contains the string "OK").

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