I am trying to make an SSL connection with the HTTP WebRequest object
using client certificates. It works just fine when I run the app from a console
or gui type environment. It fails when I call it through asp.net though. My
guess is that maybe it cant access the private key for the client cer
I have a .NET assembly that references a COM dll that does an http request. When I
call that assembly
from a test app it works just fine calling out the the COM dll. When I include my
assembly in a .NET web
application, then try to call it, I get a COM Exception: Security Error has occurred.
I am trying to make an SSL connection with the HTTP WebRequest object
using client certificates. It works just fine when I run the app from a console
or gui type environment. It fails when I call it through asp.net though. My
guess is that maybe it cant access the private key for the client cer
When I try to add my assembly under the .NET Framework Configuration Manager I get the
following error. "Unable to Add the selected Assembly. The assembly must have a
strong name."
I am trying to add it under Runtime Security Policy, Machine.
The assembly was created with a Strong Name. I us
I have an assembly on a machine that does a P-Invoke to a local dll. The assembly is
exposed
via a web service. If I call the assembly locally without going through the web
service, everything
works fine. If I call the assembly via the WebService, I get an error when I try to
Marshal to dat