Ask a Question related to ASP.NET Security, Design and Development.
-
Roman Pereyaslavsky #1
Client-side Cert Web application problem
I had the same problem about a year ago. I currently don't
have a link to the article, but there's one on MSDN (I
think it's part of a book "Implementing Secure ASP.Net
Applications" or something like that). It has even a
source code example in C# how to do it. In short - you'll
need to create a COM+ component that will do the actual
connection. That COM+ component will run under specific
user profile. You have to load a valid Client Certificate
into that user Personal Certificate store and than extract
a public key out of it. You'll be using this public key to
access the Client Certificate in that user's personal
store. At run time COM+ component loads the user profile
and at that point it can access this user's personal
certificate store. Than you need to use the Cryptography
libraries from .NET to add X509Certificate to your
HTTPWebRequest object before connecting. You also might
need to send your public key to the server for it to be
installed if the server want to allow only certain
certificates to access it.
httpwebrequest.>-----Original Message-----
>Hi all,
>I'm trying to progamaticly connect to a website through ainstalled. I have>The remote site requires a client side cert to betask just fine.>completed a command line a C# program that performs thisget a 403 error from>When I move the functionality into a dotnet website, Ianonymous access to the>the remote server. I've changed the iis login forat a loss for where>user that the cert was installed for. At this point I'mthis I would>or what to try next. If anyone has any experince doing>appreciate the input.
>
>Thanks again,
>Tom Clark
>
>
>.
>Roman Pereyaslavsky Guest
-
Problem with client side active x
Hi All, Hope you can help / point me in the right direction with a little problem. I have a VB6 created active X dll which is downloaded to the... -
Client side SOAP extension for non WEB application
Need instrucitons on how to setup SOAP extension in windows forms client. I have managed to create Server side extensions but I'm confused about... -
FormsAuthentication client-side problem
I'm using FormsAuthentication to secure access to a web site. The authentication process works correctly initially. The pages on the site have a... -
Client side and server side scripting problem
Hiya I have a problem with using some client side and server side scripting together in an ASP. I'm using VBScript. What I'm trying to achieve... -
using PHP curl and a client cert
Hello, I am trying to post to a ste that requires me to use a client cert. I can get it to work for both windows and unix, but only on the... -
Tom Clark #2
Re: Client-side Cert Web application problem
Thanks Roman,
That is exactly what I'm doing. But I'm having trouble getting the user
profile to load under my serviced component. I've got a pretty good how
to on creating the serviced component, but I'm doing something wrong.
Thanks,
Tom Clark
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Tom Clark Guest



Reply With Quote

