User322464738 posted
Hello,
Is ASP.NET Core SignalR a good fit for the following use case:
For a digital signage system I need to provide an option to login by using a smartcard reader instead of the normal login/password login you mostly find with web apps.
In short I was thinking of:
Having a (separate) C# console app on the client (touch screen with e.g. a Raspberry Pi) interfacing with a smartcard reader (connected via USB to the RPi) reading an badge/card, this same app calls eg. a REST API (on the server) for checking if the user/badge
has access. If yes, using SignalR using WebSockets "calling" the client screen web client so that it can update it's screen.
Would SignalR a solution for these kind of use cases, or what would be a more used approach?
Thanks.
Guy