Re: [Muscle] RES: Parallel Process with readers - pcsc-lite

2013-07-03 Thread Frank Marien
On 07/04/13 00:06, Sébastien Lorquet wrote: > Le 03/07/2013 21:45, Ludovic Rousseau a écrit : >> 2013/7/3 MURILO COSTA : >>> I thought that maybe can be a Java problem, do you know some >>> software to do this kind of test (parallelism) ? I'll check if >>> pcsc-tools can do that... >> I guess it i

Re: [Muscle] RES: Parallel Process with readers - pcsc-lite

2013-07-03 Thread Sébastien Lorquet
Le 03/07/2013 21:45, Ludovic Rousseau a écrit : 2013/7/3 MURILO COSTA : I thought that maybe can be a Java problem, do you know some software to do this kind of test (parallelism) ? I'll check if pcsc-tools can do that... I guess it is a javax.smartcardio "limitation". You need to create one

Re: [Muscle] RES: RES: Parallel Process with readers - pcsc-lite

2013-07-03 Thread Frank Marien
On 07/03/13 22:19, MURILO COSTA wrote: > Hello, > > $ lsusb > Bus 002 Device 031: ID 046a:002d Cherry GmbH SmartTerminal XX44 > Bus 002 Device 003: ID 0a5c:5801 Broadcom Corp. BCM5880 Secure > Applications > > $ lsusb -v | grep bMaxCCIDBusySlots > bMaxCCIDBusySlots1 >

Re: [Muscle] RES: Parallel Process with readers - pcsc-lite

2013-07-03 Thread Frank Marien
On 07/03/13 22:02, Michael StJohns wrote: > At 03:45 PM 7/3/2013, Ludovic Rousseau wrote: >> 2013/7/3 MURILO COSTA : >>> I thought that maybe can be a Java problem, do you know some software to do >>> this kind of test (parallelism) ? I'll check if pcsc-tools can do that... >> I guess it is a jav

Re: [Muscle] RES: Parallel Process with readers - pcsc-lite

2013-07-03 Thread Frank Marien
So my parallellism works because the chips are all so slow one can transmit while the others are still figuring out the next APDU? Fascinating, I'll try and do a timing diagram on that. On 07/03/13 21:45, Ludovic Rousseau wrote: > 2013/7/3 MURILO COSTA : >> I thought that maybe can be a Java prob

Re: [Muscle] RES: Parallel Process with readers - pcsc-lite

2013-07-03 Thread Michael StJohns
At 03:45 PM 7/3/2013, Ludovic Rousseau wrote: >2013/7/3 MURILO COSTA : >> I thought that maybe can be a Java problem, do you know some software to do >> this kind of test (parallelism) ? I'll check if pcsc-tools can do that... > >I guess it is a javax.smartcardio "limitation". > >You need to creat

Re: [Muscle] RES: Parallel Process with readers - pcsc-lite

2013-07-03 Thread Michael StJohns
At 03:45 PM 7/3/2013, Ludovic Rousseau wrote: >2013/7/3 MURILO COSTA : >> I thought that maybe can be a Java problem, do you know some software to do >> this kind of test (parallelism) ? I'll check if pcsc-tools can do that... > >I guess it is a javax.smartcardio "limitation". > >You need to creat

[Muscle] RES: RES: Parallel Process with readers - pcsc-lite

2013-07-03 Thread MURILO COSTA
Hello, $ lsusb Bus 002 Device 031: ID 046a:002d Cherry GmbH SmartTerminal XX44 Bus 002 Device 003: ID 0a5c:5801 Broadcom Corp. BCM5880 Secure Applications $ lsusb -v | grep bMaxCCIDBusySlots bMaxCCIDBusySlots1 bMaxCCIDBusySlots1 Look like the readers are not t

Re: [Muscle] RES: Parallel Process with readers - pcsc-lite

2013-07-03 Thread Ludovic Rousseau
2013/7/3 MURILO COSTA : > I thought that maybe can be a Java problem, do you know some software to do > this kind of test (parallelism) ? I'll check if pcsc-tools can do that... I guess it is a javax.smartcardio "limitation". You need to create one context per reader using SCardEstablishContext.

Re: [Muscle] RES: Parallel Process with readers - pcsc-lite

2013-07-03 Thread Frank Marien
On 07/03/13 19:25, Bruno Jesus wrote: > On Wed, Jul 3, 2013 at 2:15 PM, MURILO COSTA > wrote: >> Hi Frank and Francois >> >> It's really strange, because works fine on windows, and it seems there is no >> reason to don't work under OpenSuse. >> What kind of readers are you using? Serial or USB?

Re: [Muscle] RES: Parallel Process with readers - pcsc-lite

2013-07-03 Thread Bruno Jesus
On Wed, Jul 3, 2013 at 2:15 PM, MURILO COSTA wrote: > Hi Frank and Francois > > It's really strange, because works fine on windows, and it seems there is no > reason to don't work under OpenSuse. > What kind of readers are you using? Serial or USB? Can you give the names? > > I thought that maybe

[Muscle] RES: Parallel Process with readers - pcsc-lite

2013-07-03 Thread MURILO COSTA
Hi Frank and Francois It's really strange, because works fine on windows, and it seems there is no reason to don't work under OpenSuse. What kind of readers are you using? Serial or USB? Can you give the names? I thought that maybe can be a Java problem, do you know some software to do this kin

Re: [Muscle] Parallel Process with readers - pcsc-lite

2013-07-03 Thread Francois Grieu
On 03/07/2013 17:05, MURILO COSTA wrote: > I have a Java system (..) looking at some test results, I checked that the > time of process on Linux is greater than on Windows, and looks like the > reason is because the "parallel" process of windows, that doesn't happen on > Linux when two or more r

Re: [Muscle] Parallel Process with readers - pcsc-lite

2013-07-03 Thread Frank Marien
Strange, Murilo, I'm on Linux (Arch), and have never observed anything like that, from Java or otherwise. For example, in https://code.google.com/p/commons-eid/source/browse/commons-eid-dialogs/src/main/java/be/fedict/eid/commons/dialogs/BeIDSelector.java the dialog is reading photos and names

[Muscle] Parallel Process with readers - pcsc-lite

2013-07-03 Thread MURILO COSTA
Hello I have a Java system developed to record some smart cards and actually I am using it on Windows, but now I am looking forward to switch it to Linux, because some problems with USB smart card readers that I had, and to work with it I am using the pcsc-lite, that works very well. But looki