Re: List client certificates




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

.



Relevant Pages

  • Re: Am I Missing Something?
    ... Hanging certificates on wall doesn't mean that you are showing off to ... The MVP award is not praise, it is a designation of service to the ... MVP get a choice but they still get a choice to refuse the badge. ...
    (microsoft.public.windowsxp.general)
  • Re: How to fix broken security in Windows 2000?
    ... would notice a number of points that do suggest their security certificates ... mvp) answer the question you must be able to answer. ... but that some machines are missing more ...
    (microsoft.public.win2000.windows_update)
  • Re: How to fix broken security in Windows 2000?
    ... would notice a number of points that do suggest their security certificates ... mvp) answer the question you must be able to answer. ... but that some machines are missing more ...
    (microsoft.public.security)
  • Re: How to fix broken security in Windows 2000?
    ... would notice a number of points that do suggest their security certificates ... mvp) answer the question you must be able to answer. ... but that some machines are missing more ...
    (microsoft.public.win2000.security)
  • Re: List client certificates
    ... you need access to a user's client certificates and the private ... Joe Kaplan-MS MVP Directory Services Programming ... Co-author of "The .NET Developer's Guide to Directory Services Programming" ... user certificate. ...
    (microsoft.public.dotnet.framework.aspnet.security)