Questions tagged as 'signalr'

3
answers

signalr - TypeError: chat is undefined

I am developing a simple chat with signalr and I have run into an error that I still can not solve. It says that the variable chat is not defined which is not true, since I am declaring it. var chat = $.connection.chat...
asked by 06.12.2015 / 18:19
1
answer

Error serialize Json abstract class

I'm trying to send a list of abstract objects to% of signalr Server structure (where all values are generated); public abstract class Comida : Objeto { public int valorNutricional; public abstract void Comido(Cola jugador); }...
asked by 24.08.2018 / 10:54
1
answer

SignalR and mobile devices

Good morning I was using signalr to update an application in which vehicles are shown moving on a map, the locations are notified from the server to the page by signalr, while the page is active, in the browser of the device (it is not a Hybr...
asked by 28.09.2016 / 00:03
1
answer

I can not define "client" signalR

I am starting to work with signalR but I have an error (I have seen several answers on the web but none has helped me), I have the following files peopleHUB.cs using System; using System.Collections.Generic; using System.Linq; using Syste...
asked by 27.09.2018 / 20:49
2
answers

Signalr in webBrowser1 C #

Someone with a little experience can help me. I have a chat application with SignalR on a host that in functional browsers 100% But I want to load that web application in a webBrowser control of Visual Studio (C #) and I get an error when i...
asked by 30.03.2017 / 18:34
1
answer

SignalR - Problems with vb.net

I have a project on vb.net that previously did not have SignalR . I did the whole process of importing libraries with Nuget , I manually created the classes necessary for its operation, but I have not gotten it to work. I simply try to send...
asked by 20.03.2017 / 16:44
2
answers

SignalR does not update ng-view when changing pages

1.- It's a simple ng-route, I have 3 buttons, each button navigates to a new route. 2.- I have a father controller and a son controller for the ng-view 3.- For the ng-view I have a template with a span linked to the property...
asked by 25.04.2016 / 17:09
2
answers

C # SignalR connection problems

Let's see if someone can give me a cable. I'm starting connection tests through SignalR, on the one hand I have a small console application in code c # which is what makes the server and on the other hand a Windows Forms also in c # which is...
asked by 13.11.2018 / 13:12
2
answers

Pass a variable to the signal hub r asp.net - webforms

I have developed a web application with signal r guiding me from this tutorial: link It works fine, but in the tutorial the employee ID is not a variable, it is hardcoded in the hub class, I want to be able to pass the client id as a variab...
asked by 08.11.2016 / 22:13
1
answer

Call signalr hub from a modal window

I'm trying from a modal window to call the hub but it does not reach the hub, without giving any error Here the code: -Function hub: public void Estado(int estado, int id) { RepositorioVisitas.AutorizarCancelarVisita(id,estado);...
asked by 08.08.2016 / 16:51