Questions tagged as 'signalr'

1
answer

How to do SignalR load test?

When testing with the SignalR library to create real-time applications in .NET, some scalability concerns were generated which could not be found on the internet. After some tests using Crank (load simulator) , I saw that a relativel...
asked by 12.12.2013 / 00:35
4
answers

How to notify Api Web user with SignalR?

When I receive a post in an application Web Api I need to notify a certain client that a new record has been entered. This user will see this notification in a separate client application ( javascript ) of the Web Api...
asked by 29.09.2014 / 05:04
2
answers

What are the possible cases of using a persistent connection?

I've been reading about SignalR for the past few days and I've basically realized that one of its key features is to maintain a persistent connection of the server to the possible clients by accessing the server. Basically, it allows us to cre...
asked by 06.07.2014 / 01:18
1
answer

Problem trying to connect to a Hub SignalR + Angularjs

I have a project with WebApi , SignalR and Angularjs where I do some queries and insertions in real time. Everything works fine when I start the file index.html direct when running the application, however if I try to...
asked by 05.07.2016 / 22:13
0
answers

SignaIR - C # - Real Time Response [closed]

I'm using C #, Asp .Net, SQL Server. I have the following question, I am creating a web and mobile application to communicate with a WebApi however I came across the problem of information and / or data in real-time, through searches I found...
asked by 29.12.2015 / 10:28
1
answer

Use Signalr

Well I'm starting to venture into Signalr . I've decided to follow this Tutorial . Well after doing all the steps, running the project gives me the following error:    Unhandled exception at line 35, column 13 in   http: // localhos...
asked by 10.12.2014 / 17:51
1
answer

SignalR - Messages for multiple hubs

I'm using SignalR in a C # web application with VS2015. This application has 2 pages A and B. Whoever accesses page A connects to the "pageA" hub and who accesses page B in the "pageB" hub. This way I can separate the methods (client and serv...
asked by 16.09.2015 / 00:11
1
answer

Sending new value to all users via signIR

I need to make all users receive the updated values on their screens as soon as the AutonavHub.client.printPackageInfoFloat(objeto) function is called within $scope.adicionar = function (objeto) {...} . Below is my ChatHub.cs u...
asked by 23.05.2017 / 22:39
1
answer

Await ignored in asynchronous method c #

I need to use the return of an asynchronous method for validation but even with the use of "await" the method is still running before I get the function return. var teste = await new VendaService().EnviarVendaParaServicoCentral(new List<...
asked by 22.09.2015 / 19:15
1
answer

OnDisconnected event in SignaIR does not work right

Well, I've developed a chat according with this link and everything worked fine. But the disconnected event does not work right. What happens is that, according to the referral link, this event is triggered when the user closes the page, th...
asked by 28.10.2014 / 14:49