I'm writing a Windows service that must handle Smart card readers.

Very often, when I try to connect to an inserted Smart card, SCardConnect() fails with SCARD_E_SHARING_VIOLATION which basically means:

The smart card cannot be accessed because of other outstanding connections.

Fair enough.

I guess that a least one other process tries to access the Smart at the same time. But is there a way to determine which process(es) it is ?

link|improve this question

We have noticed this problem on HP machines running HP Protect Tools and haven't been able to work around it yet (short of un-installing hp protect tools) - are you using an HP? – Damien Oct 19 '10 at 17:09
feedback

1 Answer

up vote 1 down vote accepted

On your place I would try with the Process Explorer to look at the file handles opened by your application if you access to the Smart card readers. To do this you should select your process and press Ctrl-H (menu "View"/"Low Pane View"/"Handes"). After you know the device name of the Smart card readers you will be able to find out other processes which use the device if you receive SCARD_E_SHARING_VIOLATION error. You should just use Ctrl-F (menu "Find"/"Find Handle or DLL...") to find file handle.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.