Hello All,

I am getting a "Certificate is required to complete client authentication" when sending a client certificate through WinHttpRequest. I am setting the credentials and opening the website.

Any ideas?

Code:
    Dim TestMe As New WinHttpRequest
    
    lstrBaseURL = "https://test.testplace.com:1234"
    
    TestMe.open "GET", lstrBaseURL, False

  
  TestMe.SetClientCertificate ("LOCAL_MACHINE\Personal\Name of Cert Here")
    TestMe.SetCredentials "12345678", "PSWD", HTTPREQUEST_SETCREDENTIALS_FOR_SERVER

    TestMe.send (mstrCompleteSegment)
    
    TestMe.waitForResponse
Dave