I'm trying to use certificates programmatically, rather than using the store. I'm creating X509Certificate2's with filename and password.
This works fine when I have manually added the root certificate to the Certificate Store in Trusted People. However, I'd rather not have to do that on every deployment - I'd rather deal with it programmatically too.
When I remove the root certificate from the Certificate Store I get an exception.
Everything I have read seems to say that I have to manually added the root certificate to the Certificate Store, or the Trust Chain won't work.
Question: Is there a programmatic way to set up the Trust Chain, so I don't have to do it manually?
The code looks like:
var serverCert = new X509Certificate2("FullPathToMyCertificate.cer", "Password");
Client.ClientCredentials.ServiceCertificate.DefaultCertificate = serverCert;
The exception, which occures when I try to use the Client, is:
System.IdentityModel.Tokens.SecurityTokenValidationException
The X.509 certificate CN=notrealcertname, OU=TPA, OU=BMP, OU=Projects, O=Somebody, C=US is not in the trusted people store.
The X.509 certificate CN=notrealcertname, OU=TPA, OU=BMP, OU=Projects, O=Somebody, C=US chain building failed.
The certificate that was used has a trust chain that cannot be verified.
Replace the certificate or change the certificateValidationMode.
A certificate chain could not be built to a trusted root authority.