While tweaking a web proxy code, I noticed that if I run the code in an app with UAC (User Access Control) I get an exception

Here is the location where the exception is thrown:

sslStream.AuthenticateAsServer(_certificate, false, SslProtocols.Tls | SslProtocols.Ssl3 | SslProtocols.Ssl2, false);

Here is the error I get (with UAC)

The server mode SSL must use a certificate with the associated private key.

First question: Why?

2nd question: Is there an alternative? I really would like to run this in UAC (note that http works fine)

link|improve this question

25% accept rate
feedback

1 Answer

It sounds like the private key to your certificate is probably located somewhere with restricted file access. This is so that not just any user can read your private key. What is the purpose of running your service with limited privileges? If the key is only for this service, you may consider removing the security limitations on the folder it is in, but if this key is for your whole domain, I would be hesitant to do that...

link|improve this answer
nope the private key is in a place where the current script can read from (in this case the O2 Platform scripts folder), so there must be something else – Dinis Cruz Dec 6 '11 at 18:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.