Questions tagged [signalr.client]

Async signaling library for .NET applications, as well as WindowsPhone applications, to help build real-time, multi-user interactive web applications.

Async signaling library for .NET applications, as well as WindowsPhone applications, to help build real-time, multi-user interactive web applications.

SignalR.Client lets you communicate with clients on your website, Windows Console Applications, WPF Applications, and WindowsPhones applications in real time through the best continuous connections available between browser, application and server (websockets between Chrome and IIS8, but long polling between IE9 and IIS7.5)

The source is available on GitHub. and documentation here

879 questions
0
votes
1 answer

Hosting SignalR with self host in Windows Service

I am new by signalR and Owin and need help. I wrote all my signalR code in a library [My hub will be self hosted]. Then i referenced that lib from a windows service application, installed the Package "Microsoft.Owin.Host.HttpListener" in the windows…
Asmaa Edress
  • 153
  • 5
  • 14
0
votes
3 answers

SignalR authentication for persistent connection from Silverlight client

Upgrading from a custom build made around 0.4.0 SignalR I find that authentication no longer works. I have an RIA Services app with forms authentication (based on stock AuthenticationBase<>) and HttpContext.Current accessed from…
Eugene Tolmachev
  • 822
  • 4
  • 14
0
votes
1 answer

Replacing a knockout viewmodel created using mapping plugin with a new one

How to I replace an entire object(created using mapping plugin) inside the viewmodel with a new one(created using the mapping plugin)? Please note my comment inside the view model... function viewmodel(objServerModel) { var self = this; …
Josh
  • 13,530
  • 29
  • 114
  • 159
0
votes
0 answers

(Silverlight) SignalR connection.Start() throws SecurityException

I retrieved Merge branch 'Release 1.1' of SignalR from github. In there are samples for ASP.NET and Silverlight, etc. When I run the ASP.NET sample it works. When I run the Silverlight sample, the connection.Start() throws a SecurityException. I'm…
John Mc
  • 212
  • 2
  • 16
0
votes
1 answer

signalR Groups.Remove doesn't work

I have a self-hosted application akin to a scenario wherein I have a method that continuously broadcasts to groups (whether somebody has "joined" or not). Something like: var aTimer = new System.Timers.Timer(2000); aTimer.Elapsed += (sender, e)…
alpinescrambler
  • 1,934
  • 16
  • 26
0
votes
2 answers

signalR how to spread room

I have a question about signalR simple chat application. We have an app working on local host and people can join and chat with each other. Here is the problem we could not specify which message will send to which user? I mean we could not create…
0
votes
2 answers

authentication in singalR selfhost server- and web client in SSL

I have a singalR self host server that is hosting my singalR in a console application on https I am using this packages to self host: Install-Package Microsoft.Owin.Hosting -pre Install-Package Microsoft.Owin.Host.HttpListener -pre Install-Package…
Bhavin
  • 427
  • 3
  • 15
0
votes
0 answers

How to get user in SignalR?

I want to write PM messaging in my social network and I need to use long pooling requests. The best solution for asp.net is to use SignalR, but here are some problems. That's the way of execution: user writes a message, asp.net controller save it…
Eriendel
  • 911
  • 1
  • 9
  • 23
0
votes
1 answer

Signalr Owin simple example javascript client not being called

I have a 5.3.0 version of signalr self hosting that is being upgraded to a newer version of signalr. Using https://github.com/SignalR/SignalR/wiki/Self-host example i have created a simple example, but i can’t get it to work. I can get a connection…
0
votes
1 answer

IE 10, singalr error, error during negotiation request: undefined

I have a singalr self hosted server which has enable cross domain, enable javascript proxies and I have a javascript no proxy client with jquery.support.cors =true. My client is hosted in SSL and my server is not. My javascript clients works fine in…
Bhavin
  • 427
  • 3
  • 15
0
votes
0 answers

Performance troubles with SignalR in an Azure Cloud Service

I'm working on a web service that is stored in an Azure Cloud Service on a Windows Server 2012 virtual machine that uses SignalR to send messages to the clients connected to a Azure Website. To test the performance of SignalR sending the messages we…
Uriel Arvizu
  • 1,876
  • 6
  • 37
  • 97
0
votes
1 answer

SignalR not adding server callbacks

When every I attempt to add a new server callback function I cannot seem to get the callback to show up in the $.connection server callback list. What do I need to do to refresh the javascript that SignalR produces and sends to the client with the…
0
votes
1 answer

SignalR issues with existing website

When I am trying to add SignalR in our existing web application (with MVC 4) I am getting below error message on page load. Message: Unable to get value of the property 'signalR': object is null or undefined URI:…
Nitin Agrawal
  • 1,341
  • 1
  • 10
  • 19
0
votes
1 answer

SignalR: Connect JS client on SSL page to SelfHost not using SSL

I am working on an application to perform context synchronization between multiple web hosted applications using SignalR. The client machine instantiates a host using the SignalR Owin host and the applications connect to it with a no-proxy version…
JMorgan
  • 805
  • 4
  • 11
  • 24
0
votes
1 answer

Does an incompatible protocol version have any impact?

I am using a 3rd party library for both my iOS and Android signalr clients. Client has a alpha-2 version of SignalR and server is using the latest 1.0.0 version and hence am facing the error of Incompatible protocol version. If i bypass this…
Bitsian
  • 2,238
  • 5
  • 37
  • 72