0
votes
1answer
64 views

Client-Server-Client messaging with Windows Azure

Let's assume there are number of clients that asynchronously send messages for processing to Azure Cloud. The messages are pushed to a queue and processed relatively quickly (few seconds for each). ...
0
votes
0answers
87 views

SignalR on Azure: Could not load file or assembly 'System.EnterpriseServices.Wrapper.dll'

I'm running SignalR on Windows Azure, in a Cloud Service. From time to time, it will throw this exception, when I access the website: [NotImplementedException: Not implemented (Exception from ...
0
votes
2answers
99 views

How to do background work(like worker role) in web role(IIS)?

I am working on azure MVC4 application, i need to read messages from servicebus then update online users through IIS(by SignalR). I want to run some worker role type of process within the web role. ...
1
vote
1answer
90 views

What is the best practice for keeping a background task running inside the Cloud Service application domain?

I running a Windows Azure Cloud Service. I need a background task constantly running inside my Cloud Service application domain, so a extenal worker role isn't an option. This is because I need to ...
1
vote
2answers
317 views

RouteTable.Routes.MapHubs() throwing ArgumentNullException only in the Windows Azure emulator. Why?

I'm using SignalR in an MVC 3.0 Windows Azure application. The following line throws an ArgumentNullException only in the Windows Azure emulator. It doesn't throw if I run the MVC 3.0 application ...
1
vote
1answer
183 views

using SignalR in Windows Azure worker role(s) and in web role(s)

Can you create a Hub that you can send messages to clients from worker roles and web roles, or have multiple different worker roles that can sent messages to clients? Or is the recommend way to sent ...
0
votes
2answers
197 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. ...
0
votes
1answer
105 views

SignalR with Service bus in Azure WebSites

I would like to use Azure Website to deploy a website with signalR, using Azure ServiceBus. Is it possible ? Or i have to use azure roles ? FYI, got this error : Unable to resolve the instance ...
1
vote
1answer
205 views

Tcp high performance server/framework and configuration to use on Azure

We need to write high performance tcp server and using azure as a hosting. We have several options: Wrte custom tcp server in c# like described there ...
1
vote
1answer
176 views

Service bus relays and SignalR

we are planning to use SignalR with Windows Azure Service Bus for a cloud application that requires live client updating (browsers). We might have about 200 clients connected to our solution. If we ...
0
votes
1answer
268 views

SignalR and Azure - unreliable messaging?

I have SignalR running on an Azure cloud service, and I have tried to use the azure message bus to communicate across instances. I used the following code to connect to the message bus: ...
0
votes
3answers
157 views

signalr with windows azure hosting [closed]

I have been using signalR and I realized that you need .Net 4.5 to run it, but it seems as though Azure only allows .Net 4.0. Does anyone have any workarounds? Or would I have to find a hosting that ...
0
votes
1answer
105 views

Hub not able to send a message to console client

I have implemented SignalR for my Windows Azure project. I have two clients - Javascript/HTML client in my web role and a console application in my project. And Web role is my SignalR server. When i ...
1
vote
1answer
328 views

SignalR client reconnects every two seconds to hub

My client reconnects every two seconds to the SignalR hub. I'd like to know if thats by design or a mistake by me. SignalR Version: 1.0.0-rc2 Hosting SignalR Hub in Windows Azure self hosted / no ...
0
votes
0answers
123 views

SignalR from WCF after upgrade to v 1.0.0 RC1

After upgrading form ver 0.5.3 where everything worked, just one point stopped working and I can’t seem to get it. Most of my SignalR calls are simple webpage broadcasts. I have a Azure Worker Role ...
0
votes
1answer
173 views

SignalR - Can't create url for HubConnection

I started to work with SignalR on Visual Studio 2012, so far I got the basic hang of it, I guided myself through this example (You can browse the code in the page). I decided I wanted to add a REST ...
0
votes
1answer
310 views

SignalR 500 errors during “ping” on Azure website

I've got an ASP.NET 4.5 web app using SignalR 1.0.0-rc1 which I've pushed out to an Azure website for some quick-and-dirty testing (I'm mostly interested in this page here: ...
1
vote
2answers
431 views

SignalR on Service Bus

I haven't been able to find a working sample of SignalR over Azure Service Bus. Any pointers? I tried Clemens' blog post, and also the readme in GitHub, but cannot make it work. Thanks
2
votes
1answer
762 views

SignalR seems to be slowing startup of my MVC / Azure application

I have an MVC application running under .NET 4.5 on a WebRole on Windows Azure, employing SignalR 1.0 -alpha2, and using the ServiceBus backplane. In my App_Start folder I have RegisterHubs.cs, as ...
1
vote
1answer
137 views

Why are messages pushed from an MVC app with SignalR not getting through to the client?

I have a simple SignalR hub application, using MVC4/C# on the server end, hosted in an Azure Web Role (single instance, in the emulator, with an http input endpoint), and TypeScript compiled to JS on ...
2
votes
0answers
109 views

Socket timeout using signalR when using Azure Emulator, it works fine if i run the mvc project

I have a MVC 4 Project using signalR. I start a thread that send a msg every 5 sec to all clients. This runs fine. I can see the msgs on the clients. When i run the Azure Project with the MVC project ...
0
votes
0answers
202 views

SignalR opens 1 connection per second, using both long polling and server sent events

I am using SignalR 5.1, which I got using NuGet. The client is a Windows Phone 7 app, so it is using "SignalR.Client.WP7". The server is hosted on IIS8. My development machine is Windows 8, the ...
0
votes
2answers
815 views

socket.io vs. SignalR [closed]

I am developing a ASP.NET MVC app deployed on Azure, and looking for a library providing asynchronous transport mechanism/fallback. After my own research, I've concluded that there are two well-known ...
0
votes
1answer
382 views

Is using ServiceBus required when my SignalR app will be deployed to WindowsAzure?

I created a simple tic tac toe game, which is a web app that calls the SignalR Hub inside the same application. When deploying to a shared hosting environment it works as charm but when deploying to ...
2
votes
1answer
700 views

Reason for massive change in signalr performance?

I have written a basic signalr hub that accepts a call from a client, updates the database and then pings a notification out to all clients. public class ElementHub : Hub { public void ...
3
votes
1answer
1k views

Scaling SignalR with Windows Azure Service Bus

I have an application that uses SignalR to connect users on my site for things like chat. If I am only first opening my site to the public, I would assume I only need one instance for the first few ...
1
vote
2answers
699 views

Signalr on Azure: service bus required for calling a single client?

I read that Signalr on Azure requires a service bus implementation (e.g. https://github.com/SignalR/SignalR/wiki/Azure-service-bus) for scalability purpose. However, my server only makes callbacks ...