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 running IE10, Silverlight 5 and .NET 4.5.
In the Silverlight sample, see
MainPage.xaml.cs
var scheduler = TaskScheduler.FromCurrentSynchronizationContext();
connection.Start().ContinueWith(task => **// SecurityException here!**
{
var ex = task.Exception.InnerExceptions[0];
App.ViewModel.Items.Add(ex.Message);
},
CancellationToken.None,
TaskContinuationOptions.OnlyOnFaulted,
scheduler);