We have a site where we we contact a remote server, and to do this we use a api/framework who needs to importa a X509 certificate. From the start i got the following exception:

The system cannot find the file specified. 

at System.Security.Cryptography.CryptographicException.ThrowCryptogaphicException(Int32 hr) at System.Security.Cryptography.X509Certificates.X509Utils._LoadCertFromFile(String fileName, IntPtr password, UInt32 dwFlags, Boolean persistKeySet, SafeCertContextHandle& pCertCtx) at System.Security.Cryptography.X509Certificates.X509Certificate.LoadCertificateFromFile(String fileName, Object password, X509KeyStorageFlags keyStorageFlags)

I solved this by using the "X509KeyStorageFlags.MachineKeySet" when i load the certificate. However the usercontrols accessing the remote server works in one place of the site, but on a different page i get a similar error.

The system cannot find the file specified. 

at System.Security.Cryptography.CryptographicException.ThrowCryptogaphicException(Int32 hr) at System.Security.Cryptography.X509Certificates.X509Utils._QueryCertFileType(String fileName) at System.Security.Cryptography.X509Certificates.X509Certificate.LoadCertificateFromFile(String fileName, Object password, X509KeyStorageFlags keyStorageFlags)

The strangest thing is that it is the same usercontrol on both pages, and the same functions library that create the client to access the remote server. I can't se why the controls work in one page but not the second. The biggest difference is that we got this controls who we use manually and the second time around we have a grid who we popup the second page and with querystrings pre select values we normaly type manually in the first page.

link|improve this question
Did you try using Server.MapPath to locate the certificate? – KMån Jun 20 '11 at 13:09
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.