diff --git a/src/Innovator.Client/IO/SyncClientHandler.cs b/src/Innovator.Client/IO/SyncClientHandler.cs index d6026503..cbfc97c2 100644 --- a/src/Innovator.Client/IO/SyncClientHandler.cs +++ b/src/Innovator.Client/IO/SyncClientHandler.cs @@ -188,6 +188,7 @@ private HttpWebRequest CreateAndPrepareWebRequest(HttpRequestMessage request) var httpWebRequest = (HttpWebRequest)System.Net.WebRequest.Create(request.RequestUri); httpWebRequest.Method = request.Method.Method; httpWebRequest.ProtocolVersion = request.Version; + httpWebRequest.ClientCertificates = ClientCertificates; this.SetDefaultOptions(httpWebRequest); SyncClientHandler.SetConnectionOptions(httpWebRequest, request); this.SetServicePointOptions(httpWebRequest, request);