Re: List client certificates
- From: moises.cid@xxxxxxxxx
- Date: 26 Jun 2006 10:31:47 -0700
Thanks Joe for your information.
Could you tell where found information in order to do that.
Thanks in advance.
Joe Kaplan (MVP - ADSI) ha escrito:
You need some ActiveX or script code that runs on the client to read a
user's client certificates. This code won't work running on the server. :)
Joe K.
--
Joe Kaplan-MS MVP Directory Services Programming
Co-author of "The .NET Developer's Guide to Directory Services Programming"
http://www.directoryprogramming.net
--
<moises.cid@xxxxxxxxx> wrote in message
news:1151307841.572305.139170@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Hi,
I'm developing a Web application with VStudio 2005 + .net 2.0 + IIS 6.0
In the Web application I've to digitally sign a pdf document with a
user certificate. In the page where I've to sign I list the user
certificates with this code:
------------------------------------------------------------------------------------
X509Store store = new X509Store(StoreLocation.CurrentUser);
store.Open(OpenFlags.ReadOnly);
X509Certificate2Collection certCollection = store.Certificates;
if (certCollection.Count < 1) {
lblMsg.Text = "No hay certificados 'Personales' Instalados.";
return; }
foreach (X509Certificate2 c in certCollection)
DDListCertifi.Items.Add(c.Subject);
------------------------------------------------------------------------------------
This code works fine in my Visual Studio local web server. I can see
the user certificates in the dropdownlist, but when I export the code
to other server, it doesn't works. I can't see the certificates in the
dropdown,
¿can anybody help me?
Thanks in advance. Moisés
.
- Follow-Ups:
- Re: List client certificates
- From: Joe Kaplan \(MVP - ADSI\)
- Re: List client certificates
- References:
- List client certificates
- From: moises . cid
- Re: List client certificates
- From: Joe Kaplan \(MVP - ADSI\)
- List client certificates
- Prev by Date: Re: List client certificates
- Next by Date: Re: List client certificates
- Previous by thread: Re: List client certificates
- Next by thread: Re: List client certificates
- Index(es):
Relevant Pages
|
|