Access to client info in ValidateRemoteCertificate event

Is there a way to get client information in the ValidateRemoteCertificate event.
The goal is to identify the offending clients (remote IP address, …)

TIA,
Frederic

Hi,

you don’t have such info on the ValidateRemoteCertificate level.

		private Boolean ServerCertificateValidationCallback(Object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
		{
			return this._connectionFactory.OnValidateRemoteCertificate(certificate, chain, errors, true);
		}

It would be very usefull to have access to the remote IP address so we can identify offending applications/configurations

Alternatively if I could write in the Session or if the Login interface had access to the client certificate I could put my server in “warn” mode and then report on the offending application from there.
Is that possible?

Logged feature request as bugs://D19377