I'm playing around with the new 1.0alpha2 release of signalR. I want to implement a SignalR server outside an ASP.NET application. So that two console applications can talk to each other.
With the old 0.5.3 version I was able to "Install-Package SignalR.Hosting.Self" to:
var server = new Server("http://127.0.0.1:8088/");
But in the new 1.0alpha2 Release I can't install this NuGet Package...
Can anyone give me a link or maybe a working mini example of two console applications which based on the 1.0alpha2 release. (I can only find not working old 0.5.3 examples...).
Ok. so I've followed your instructions. Now:
My Client Console:
class Programm
{
static void Main(string[] args)
{
var connection = new HubConnection("http://localhost/");
IHubProxy myHub = connection.CreateHubProxy("MyHub");
connection.Start().ContinueWith(task =>
{
if (task.IsFaulted)
Console.WriteLine("No Connection: " + task.Exception.GetBaseException());
else
Console.WriteLine("Connected!");
});
myHub.Invoke("Send");
Console.ReadLine(); // wait...
}
}
And here is my Server Console:
class Program : Hub
{
static void Main(string[] args)
{
Console.ReadKey();
}
public void Send(string message)
{
Debug.WriteLine("Server Method [send] was called");
Console.WriteLine("Server Method [send] was called");
}
}
But this is nonsense I think...
