0
votes
2answers
109 views

Using ajaxSetup beforeSend for Basic Auth is breaking SignalR connection

I have a WebApi secured with Basic Auth which is applied to the entire Api using a AuthorizationFilterAttribute. I also have SignalR Hubs sitting on several of my Api Controllers. Alongside this I ...
0
votes
1answer
114 views

Unable to reconnect SignalR JS client after recycle of application pool

When i recycle my Application Pool for the site where the SignalR hub is running, the javascript clients is unable to reconnect. But everything is OK if the client do a refresh on his browser. In the ...
0
votes
2answers
265 views

ASP.NET Web API: Use the default serializer

Is there a simple way to use ASP.NET Web API's default serializer? Mine is configured in that fashion in WebApiConfig.cs config.Formatters.JsonFormatter.SerializerSettings.Converters.Add(new ...
0
votes
2answers
195 views

SignalR CryptographicException on AzureWebsites

I got this exception with SignalR, deployed in Azure WebSites. It works fine in debug environment. It's SignalR 1.0.1 and I use .NET MVC and WebApi The data protection operation was unsuccessful. ...
2
votes
1answer
354 views

SignalR across domains: errors with not allowed by Access-Control-Allow-Origin

Trying to call signalR from another domain, and keep on getting this error: XMLHttpRequest cannot load localhost:62150/signalr/negotiate?_=1362242757692. Origin localhost:4982 is not allowed ...
0
votes
1answer
344 views

CORS issue with SignalR - Origin not allowed

So I've read up on all the previous questions on this, but following the steps don't seem to be working for me. I'm getting the "Origin * is not allowed by Access-Control-Allow-Origin", but that ...
1
vote
1answer
156 views

How should I continuously observe a Web service-provided database query?

I'm developing a Web application that is supposed to query a Web service (ASP.NET Web API) for certain data, and visualize the results. The queried data may change while the client application is ...
3
votes
1answer
374 views

How to send message to signalR specific PersistentConnection by its ID ? (with asp.net mvc4 web-api)

I use class Echo derived from PersistentConnection, and I want to send a message to certain connection: var client = GlobalHost.ConnectionManager.GetConnectionContext<Echo>(); ...
2
votes
3answers
1k views

Can I incorporate both SignalR and a RESTful API?

I have a single page web app developed using ASP.NET. I recently converted many of the web methods to be push based, using the SignalR library. This really sped up the page considerably and reduced ...
2
votes
3answers
846 views

Comparing Self Hosting: WCF vs HttpListener

I've been looking into the possibility of using ASP.NET Web API and SignalR in a self-hosted application, and I noticed that the ASP.NET Web API self-hosted implementation uses WCF, and the SignalR ...
0
votes
1answer
433 views

How to return JSON to browser from model class using SignalR and URL call to Web API?

Here's what's going on. I have an ASP.NET MVC 4 Web API web application. I can call API resources via URL. One of these functions get performance monitoring data for a specified amount of time and ...
0
votes
1answer
525 views

SignalR : Not invoking method in hub to return JSON in real-time

I am on the verge of returning JSON in real-time while a performance monitoring process is running using SignalR (although it not working). Currently I can get the full JSON to return once the process ...
2
votes
1answer
240 views

SignalR and foreverFrame hang with IE 9

I have an asp.net site using SignalR for pushing data from the server to the client . I try my page with two browsers (FireFox , IE9) I noticed , Firefox is using ServerEvent transport and IE uses ...
2
votes
0answers
367 views

Design considerations for heavy loaded asp.net MVC + Web API application and asynchronous message bus

I'm planning to build a quite large application (large in term of concurrent user / number of request, not in term of features). Basically, I'll have a service somewhere, that is waiting for commands ...
0
votes
1answer
392 views

Signalr has no connetions

I'm trying to use signalr in ApiController that handles upload from a page. Essentially I am invoking my Hub from my uploadController and then I want to talk to my client. shortened down the upload ...
0
votes
1answer
92 views

SignalR notification issue

I have a monitoring site which update data from the server to the clients. I'm using SignaR doing this . I have an issue , when I load the page I need to get the data the first time , then there is a ...
6
votes
1answer
2k views

Best way to do async programming with Asp.Net

There seems to be several options available at the moment to do async/push-style programming with asp.net. But I'm a little confused as to what is the best and what offers the most developer friendly ...