Hello,
I want to connect to our SignalR server using the example from the demo application.
What am I doing wrong?
fSignalR.pas:
In different options I can not establish a connection.
I easy establish connection in T*************on component. But cant do this in TsgcWebSocketClient / TsgcWSAPI_SignalR.
Regards,
Max
I want to connect to our SignalR server using the example from the demo application.
What am I doing wrong?
fSignalR.pas:
procedure TFRMSignalR.btnConnectClick(Sender: TObject);
begin
WSClient.URL := 'https://moxxx.xxxxl:9248/xxxxomSR/notify';
WSClient.Authentication.Basic.Enabled := True;
WSClient.Authentication.URL.Enabled := True;
WSClient.Authentication.Password := 'xxxxxxxxxxxx';
WSClient.Authentication.User := 'userrrrr';
SignalR.SignalR.Hubs.Clear;
SignalR.SignalR.Hubs.Add('NotifyHub');
WSClient.Active := True;
If WSClient.Active then
Beep;
end;
In different options I can not establish a connection.
I easy establish connection in T*************on component. But cant do this in TsgcWebSocketClient / TsgcWSAPI_SignalR.
Regards,
Max