I have a problem with connecting to the CA-server. My idea is to revoke certificates through a remote connection. Actually I am admin on my local machine and also on the CA-server. The idea is pretty similar to the following link : Example
Now my problem is on the following part:
certView.OpenConnection(strServer + "\" + strCAName);
If I run through this line it show me the error:
CCertView::OpenConnection The operation was canceled by the user. 0x800704c7 (WIN32: 1223)
Does anybody now this error and can help me?
I can successfully revoke the certificate by a remote connection like this:
CCertAdmin caAdmin = new CCertAdmin(); caAdmin.RevokeCertificate("strServer", "strSerialnumber", reason, DateTime.Now);
So I think there is no problem with the connection to the ca-server.