Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

DataFlex Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(DataFlex) PC/SC Check the Status of each Smart Card Reader (and USB token)

See more SCard Examples

Demonstrates how to list the smart card readers and USB tokens connected to the computer, and check the status of each.

Note: This functionality was introduced in Chilkat v9.5.0.87.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoScard
    Boolean iSuccess
    Variant vStReaders
    Handle hoStReaders
    Integer iNumReaders
    Integer i
    String sReader
    String sTemp1
    Boolean bTemp1

    // This example requires the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    Get Create (RefClass(cComChilkatSCard)) To hoScard
    If (Not(IsComObjectCreated(hoScard))) Begin
        Send CreateComObject of hoScard
    End

    // First establish a context to the PC/SC Resource Manager
    Get ComEstablishContext Of hoScard "user" To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoScard To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get Create (RefClass(cComChilkatStringTable)) To hoStReaders
    If (Not(IsComObjectCreated(hoStReaders))) Begin
        Send CreateComObject of hoStReaders
    End
    Get pvComObject of hoStReaders to vStReaders
    Get ComListReaders Of hoScard vStReaders To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoScard To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get ComCount Of hoStReaders To iNumReaders
    Move 0 To i
    While (i < iNumReaders)
        Get ComStringAt Of hoStReaders i To sReader

        Showln i ": " sReader

        // Connect to this reader.
        Get ComConnect Of hoScard sReader "shared" "no_preference" To bTemp1
        If (bTemp1 = True) Begin

            // Check the status to get the reader state, active protocol, and card ATR (if a card is inserted).
            Get ComCheckStatus Of hoScard To bTemp1
            If (bTemp1 = True) Begin
                Get ComReaderStatus Of hoScard To sTemp1
                Showln "ReaderStatus: " sTemp1
                Get ComCardAtr Of hoScard To sTemp1
                Showln "CardAtr: " sTemp1
                Get ComActiveProtocol Of hoScard To sTemp1
                Showln "ActiveProtocol: " sTemp1
            End
            Else Begin
                Get ComLastErrorText Of hoScard To sTemp1
                Showln sTemp1
                Showln "CheckStatus failed."
            End

            // Disconnect from this reader.
            Get ComDisconnect Of hoScard "leave" To iSuccess
        End
        Else Begin
            Get ComLastErrorText Of hoScard To sTemp1
            Showln sTemp1
            Showln "Connect failed."
        End

        Showln "---------------------------------------"
        Move (i + 1) To i
    Loop

    // Sample output:

    // 0: Alcor Micro USB Smart Card Reader 0
    // ReaderStatus: specific
    // CardAtr: 3B7F96000080318065B0855956FB120FFE829000
    // ActiveProtocol: T0
    // ---------------------------------------
    // 1: Generic Smart Card Reader Interface 0
    // ReaderStatus: specific
    // CardAtr: 3BFC180000813180459067464A00641606F2727E00E0
    // ActiveProtocol: T1
    // ---------------------------------------
    // 2: SCM Microsystems Inc. SCR33x USB Smart Card Reader 0
    // ReaderStatus: specific
    // CardAtr: 3BDF96FF8131FE455A018048494443313158587300011B09
    // ActiveProtocol: T1
    // ---------------------------------------

    // Applications should always release the context when finished.
    Get ComReleaseContext Of hoScard To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoScard To sTemp1
        Showln sTemp1
    End



End_Procedure

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.