0
votes
0answers
59 views

Can I Programmatically Discern IIS Server Settings? (MaxConnections, etc.)

I am attempting to run a SignalR application (.NET 4.5) on an inexpensive shared hosting provider, and I have read that IIS can begin to throttle connections if the server settings are allocated too ...
4
votes
1answer
117 views

How do I create a long lived object in within the IIS/ASP.Net?

I am currently using SignalR in and ASP.Net MVC 4 appliation. I am consuming messages from RabbitMQ, and in essence need to broadcast via SignalR whenever a new message hits the queue. Problem is ...
0
votes
1answer
707 views

SignalR cross domain and IIS 7.5 path to hub only works locally on the server, how to access it externally?

I am self hosting a SignalR Hubs server within my C# WinForms application: string url = "http://localhost:8081/"; m_signalrServer = new ...
1
vote
1answer
171 views

SignalR Websocket console error

I am running a SignalR app. It is targeting .NET 4.5, it is running on Windows 8 IIS 8 and the websocket protocol is definitely installed. SignalR accurately detects that it should try websocket ...
0
votes
2answers
435 views

SignalR won't use Websocket protocol even though I have the protocol installed in windows 8

I'm using signalr to do some real-time events in my web application. I'm trying to force signalr to use the new websocket protocol but it won't, even if I specify it. $.connection.hub.start({ ...
1
vote
1answer
307 views

SignalR connection hangs, calls client ~30 seconds later

I'm using the latest SignalR from NuGet in a MVC4 site. Using the sample hub code (or any code), I'm getting some weird connection problems. Everything loads fine, SignalR makes the negotiate call ...
0
votes
0answers
240 views

SignalR - works on Cassini an IIS Express but not on Windows 2008 with IIS 7.0

We've got SignalR running on a Silverlight 5 client. It is working on our local machines under both cassini and IIS Express, but it isn't when we deploy the app to our dev server, which runs Windows ...
3
votes
2answers
724 views

SignalR and Browser Connection limit

I made a simple app with SignalR for testing. When the page loads it calls a function on the server, that function then calls a client function that prints a message on the screen. I did that to check ...
1
vote
0answers
422 views

Silverlight, SignalR and IIS Applications off of the Default Web Site

I'm using SignalR in a Silverlight 5 application. When I host my app in an "application" off of the default website in IIS 7.5 (i.e. localhost/subsite) Fiddler shows I get a 404 for ...
3
votes
1answer
584 views

SignalR and Load Balancing With Active/Active Sticky Sessions

We have an application that uses SignalR to update clients UI, currently the app is hosted on IIS which we maintain and our clients are connceted directly to us. We are however in the process of ...
9
votes
3answers
1k views

While using signalr, will there be any connection limits on IIS

I have been looking at SignalR from last few days. Using this I have created an Admin Dashboard to get realtime information about a database table. Basically this table gets populated by may different ...
0
votes
0answers
422 views

SignalR & Windows 7's IIS 7.5 hangs

I am now testing new Chat with SignalR and IIS/ASP.net 4 and friends (MySQL, etc...) I can use SignalR with two clients (IE9, Chrome) or one only and it works. after some actions with code (refresh, ...
2
votes
0answers
508 views

Configuring signalR to work in IIS6

I'm working on a signalR project, and was running into HTTP 404 errors when deploying to a server running IIS6 (Windows Server 2003). The 404 was on the signalr/hubs reference. It was suggested in the ...
1
vote
2answers
759 views

IIS Background thread and SignalR

I need to have a background thread that does some work and sends data to the users connected to the service through SignalR. I thought of hosting this thread inside IIS, and to spawn it when ...
4
votes
2answers
998 views

SignalR chat module in Orchard CMS

I am building an instant chat module for the orchard project I am working on. I would like to use SignalR to power the chat, however I am running into difficulties with this: <script ...
2
votes
2answers
1k views

ASP.NET and background worker process

I have a web application running on ASP.NET and using SignalR I support real-time communication between the clients and the server. I need some type of a worker process that does work in a loop and ...
2
votes
2answers
1k views

SignalR Client - The remote server returned an error (401 Unauthorized)

Premise I'm attempting to make a windows service act as a signalR client to a web server (MVC3 project running on IIS Express). When trying to connect to the server, a 401 Unauthorized is returned. ...
12
votes
7answers
6k views

Signalr/Hub not loading in IIS 7 but working correctly in Visual Studio

I am working on a Web Application on the Asp .Net 4.0 framework that uses SignalR, having installed it from the Nuget package. When I debug or run the application without debugging locally it works ...