David Stania
David Stania
@vwxyzh after restarting service, problem still exists. ResourceId I sended to you. Thank you.
I don't know why, but i got this erro ``` Microsoft.Azure.SignalR.ServiceConnection[2] Failed to connect to '(Primary)https://xxxx.service.signalr.net', will retry after the back off period. Error detail: The server returned status code...
found my mistake! **Right** ```JS var connection = new signalR.HubConnectionBuilder() .withUrl('/TwinHubDashboard') .configureLogging(signalR.LogLevel.Information) .build(); ``` **Wrong** ```JS var connection = new signalR.HubConnectionBuilder() .withUrl('/TwinHubDashboard', { skipNegotiation: true, transport: signalR.HttpTransportType.WebSockets }) .configureLogging(signalR.LogLevel.Information) .build();...
Thank you for your answer. After inserting some cards, nothing happens. My code is from your example ` CardResult result = CardTerminalClient.ReadCard("ctcym.dll"); if (result.Success) {...}`
I will check that tomorrow. I have no card to check that yet. Thank you.
I found the problem after checking the debug output. There is a different dateformat with "Geburtstag" on PKV. In my case, one KV card got this format 'yyyyMMdd' and the...
Thank you! I didn't saied, that there is an problem with this library. I only saied, that I got exceptions by reading the birthday. You did a great job by...