Hello,
Without more info I cannot help you, please answer the following questions below:
1. Are you trying to connecto to a SignalR or a SignalRCore server? the protocols are different
2. The server requires some type of authentication? if yes, which? in your code seems you are trying to setup some type of authentication, but not sure which.
3. WSClient.URL := 'https://moxxx.xxxxl:9248/xxxxomSR/notify' ... won't work, only ws or tcp works for websocket component. Use the following
WSClient.Host := 'moxx.xxx...';
WSClient.Port := 9248;
WSClient.Options.Parameters := '/xxxxomSR';
WSClient.TLS := True;
But without knowing the exact URL I cannot help more.
Kind Regards,
Sergio