Czy istnieje mały przykład aplikacji konsoli lub winform używającej signalR do wysyłania wiadomości do koncentratora .net? Wypróbowałem przykłady .net i spojrzałem na wiki, ale nie ma dla mnie sensu związek między hubem (.net) a klientem (aplikacją konsoli) (nie mogłem znaleźć tego przykładu). Czy aplikacja potrzebuje tylko adresu i nazwy koncentratora, aby się połączyć?
Gdyby ktoś mógł podać małą ciekawostkę kodu pokazującego aplikację łączącą się z hubem i wysyłającą „Hello World” lub coś, co otrzymuje hub .net?
PS. Mam standardowy przykład czatu w centrum, który działa dobrze, jeśli spróbuję przypisać do niego nazwę koncentratora w Cs, przestaje działać, tj. [HubName ("test")], czy znasz przyczynę tego ?.
Dzięki.
Bieżący kod aplikacji konsoli.
static void Main(string[] args)
{
//Set connection
var connection = new HubConnection("http://localhost:41627/");
//Make proxy to hub based on hub name on server
var myHub = connection.CreateProxy("chat");
//Start connection
connection.Start().ContinueWith(task =>
{
if (task.IsFaulted)
{
Console.WriteLine("There was an error opening the connection:{0}", task.Exception.GetBaseException());
}
else
{
Console.WriteLine("Connected");
}
}).Wait();
//connection.StateChanged += connection_StateChanged;
myHub.Invoke("Send", "HELLO World ").ContinueWith(task => {
if(task.IsFaulted)
{
Console.WriteLine("There was an error calling send: {0}",task.Exception.GetBaseException());
}
else
{
Console.WriteLine("Send Complete.");
}
});
}
Serwer centralny. (inny obszar roboczy projektu)
public class Chat : Hub
{
public void Send(string message)
{
// Call the addMessage method on all clients
Clients.addMessage(message);
}
}
Informacje Wiki na ten temat to http://www.asp.net/signalr/overview/signalr-20/hubs-api/hubs-api-guide-net-client
Odpowiedzi:
Przede wszystkim należy zainstalować SignalR.Host.Self w aplikacji serwera i SignalR.Client w aplikacji klienckiej przez nuget:
Następnie dodaj poniższy kod do swoich projektów;)
(uruchom projekty jako administrator)
Aplikacja konsoli serwera:
using System; using SignalR.Hubs; namespace SignalR.Hosting.Self.Samples { class Program { static void Main(string[] args) { string url = "http://127.0.0.1:8088/"; var server = new Server(url); // Map the default hub url (/signalr) server.MapHubs(); // Start the server server.Start(); Console.WriteLine("Server running on {0}", url); // Keep going until somebody hits 'x' while (true) { ConsoleKeyInfo ki = Console.ReadKey(true); if (ki.Key == ConsoleKey.X) { break; } } } [HubName("CustomHub")] public class MyHub : Hub { public string Send(string message) { return message; } public void DoSomething(string param) { Clients.addMessage(param); } } } }
Aplikacja konsoli klienta:
using System; using SignalR.Client.Hubs; namespace SignalRConsoleApp { internal class Program { private static void Main(string[] args) { //Set connection var connection = new HubConnection("http://127.0.0.1:8088/"); //Make proxy to hub based on hub name on server var myHub = connection.CreateHubProxy("CustomHub"); //Start connection connection.Start().ContinueWith(task => { if (task.IsFaulted) { Console.WriteLine("There was an error opening the connection:{0}", task.Exception.GetBaseException()); } else { Console.WriteLine("Connected"); } }).Wait(); myHub.Invoke<string>("Send", "HELLO World ").ContinueWith(task => { if (task.IsFaulted) { Console.WriteLine("There was an error calling send: {0}", task.Exception.GetBaseException()); } else { Console.WriteLine(task.Result); } }); myHub.On<string>("addMessage", param => { Console.WriteLine(param); }); myHub.Invoke<string>("DoSomething", "I'm doing something!!!").Wait(); Console.Read(); connection.Stop(); } } }
źródło
.On<T>()
przed wywołaniemconnection.Start()
metody należy dodać detektory zdarzeń ( wywołania metod).Przykład dla SignalR 2.2.1 (maj 2017)
serwer
Pakiet instalacyjny Microsoft.AspNet.SignalR.SelfHost - wersja 2.2.1
[assembly: OwinStartup(typeof(Program.Startup))] namespace ConsoleApplication116_SignalRServer { class Program { static IDisposable SignalR; static void Main(string[] args) { string url = "http://127.0.0.1:8088"; SignalR = WebApp.Start(url); Console.ReadKey(); } public class Startup { public void Configuration(IAppBuilder app) { app.UseCors(CorsOptions.AllowAll); /* CAMEL CASE & JSON DATE FORMATTING use SignalRContractResolver from /programming/30005575/signalr-use-camel-case var settings = new JsonSerializerSettings() { DateFormatHandling = DateFormatHandling.IsoDateFormat, DateTimeZoneHandling = DateTimeZoneHandling.Utc }; settings.ContractResolver = new SignalRContractResolver(); var serializer = JsonSerializer.Create(settings); GlobalHost.DependencyResolver.Register(typeof(JsonSerializer), () => serializer); */ app.MapSignalR(); } } [HubName("MyHub")] public class MyHub : Hub { public void Send(string name, string message) { Clients.All.addMessage(name, message); } } } }
Klient
(prawie taka sama jak odpowiedź Mehrdada Bahrainy)
Pakiet instalacyjny Microsoft.AspNet.SignalR.Client - wersja 2.2.1
namespace ConsoleApplication116_SignalRClient { class Program { private static void Main(string[] args) { var connection = new HubConnection("http://127.0.0.1:8088/"); var myHub = connection.CreateHubProxy("MyHub"); Console.WriteLine("Enter your name"); string name = Console.ReadLine(); connection.Start().ContinueWith(task => { if (task.IsFaulted) { Console.WriteLine("There was an error opening the connection:{0}", task.Exception.GetBaseException()); } else { Console.WriteLine("Connected"); myHub.On<string, string>("addMessage", (s1, s2) => { Console.WriteLine(s1 + ": " + s2); }); while (true) { Console.WriteLine("Please Enter Message"); string message = Console.ReadLine(); if (string.IsNullOrEmpty(message)) { break; } myHub.Invoke<string>("Send", name, message).ContinueWith(task1 => { if (task1.IsFaulted) { Console.WriteLine("There was an error calling send: {0}", task1.Exception.GetBaseException()); } else { Console.WriteLine(task1.Result); } }); } } }).Wait(); Console.Read(); connection.Stop(); } } }
źródło
Self-Host używa teraz Owin. Sprawdź http://www.asp.net/signalr/overview/signalr-20/getting-started-with-signalr-20/tutorial-signalr-20-self-host, aby skonfigurować serwer. Jest kompatybilny z powyższym kodem klienta.
źródło
To jest dla dot net core 2.1 - po wielu próbach i błędach w końcu udało mi się to działać bezbłędnie:
var url = "Hub URL goes here"; var connection = new HubConnectionBuilder() .WithUrl($"{url}") .WithAutomaticReconnect() //I don't think this is totally required, but can't hurt either .Build(); //Start the connection var t = connection.StartAsync(); //Wait for the connection to complete t.Wait(); //Make your call - but in this case don't wait for a response //if your goal is to set it and forget it await connection.InvokeAsync("SendMessage", "User-Server", "Message from the server");
Ten kod pochodzi z typowego klienta czatu dla biednych sygnalistów. Problem, na który natknęliśmy się ja i wiele innych osób, polega na ustanowieniu połączenia przed próbą wysłania wiadomości do centrum. Ma to kluczowe znaczenie, dlatego ważne jest, aby poczekać na zakończenie zadania asynchronicznego - co oznacza, że synchronizujemy je, czekając na zakończenie zadania.
źródło