situation is as follows – client uses smart card authetication against server (F5 server actualy). There is need for ActiveX component, which would collect some data from client’s computer and then upload to server. Problem is, that server is very protected and allows only those connection, which have valid client certificate. Is there a way for ActiveX component to get that certificate, which was used for opening page, on which component resides? Or maybe it is possible to reuse browser connection?
situation is as follows – client uses smart card authetication against server (F5 server
Share
Ok. I have found solution. It ain’t perfect but it works. On server side I read client certificate thumbprint and include that on webpage. ActiveX component later on reads thumbprint from html and then locates certificate with same thumbprint in user certificate store. Works well with smart-card as well! 🙂
Instead of thumbprint one can use something else, like certificate subject, but thumbprint is most unique one.
nice one!