Posted on: 4/9/2014 8:12:08 AM | Views : 869

I have a windows hosted SignalR hub created in VS2012:

public class Startup { public void Configuration(IAppBuilder app) { app.UseCors(CorsOptions.AllowAll); app.MapSignalR(); } } public static class SignalR { public static void Start() { const string url = "http://*:8080"; WebApp.Start<Startup>(url); } } public class Broadcaster : Hub { public void SendDownloadResult(bool result, string device, string description, string connectionId, string task) { var context = GlobalHost.ConnectionManager.GetHubContext<Broadcaster>(); context.Clients.Client(connectionId).sendDownloadResult(result, device, description, task); } } I have deployed this windows service on 2 different PCs, it works fine on one, but on the other, I get HTTP 503 Service is unavailable when I try to browse < ...

Go to the complete details ...