thank's for all roger sorry to answer so late :-D
Roger Upole a écrit : > "stéphane bard" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >> Hi all, >> Has anyone ever used Python to work with Certificate Services in >> Windows? I'm trying to capicom dll with pywin32. >> >> >> I've found some reference about python and capicom in >> this mail archive >> http://mail.python.org/pipermail/python-win32/2006-March.txt >> >> but nothing really helpfull. >> I try to use windll from ctypes module >> >> >>>> windll.load( >> but don't get access to capicom. >> >> any idea ? > > COM dll's usually aren't designed to be used directly. > You request instances of the interfaces they implement > by guid or program id. > > import win32com.client > certstore=win32com.client.Dispatch('capicom.store') > certstore.Open(StoreName='Root') > for cert in certstore.Certificates: > print 'SubjectName:', cert.SubjectName, 'IssuerName:', cert.IssuerName > > Roger > > > > > -- http://mail.python.org/mailman/listinfo/python-list