SignalR Wiki Getting Started HubsページのサンプルChatアプリケーションを使用しています。グループサポートを追加するように拡張しましたが、正常に動作しています。
ただし、外部コンソールアプリケーションからグループにメッセージを送信したいと思います。これがコンソールアプリのコードで、その下がグループのコードです。プロキシからグループにメッセージを送信するにはどうすればよいですか?出来ますか?
// Console App
using System;
using Microsoft.AspNet.SignalR.Client.Hubs;
namespace SignalrNetClient
{
class Program
{
static void Main(string[] args)
{
// Connect to the service
var connection = new HubConnection("http://localhost:50116");
var chatHub = connection.CreateHubProxy("Chat");
// Print the message when it comes in
connection.Received += data => Console.WriteLine(data);
// Start the connection
connection.Start().Wait();
chatHub.Invoke("Send", "Hey there!");
string line = null;
while ((line = Console.ReadLine()) != null)
{
// Send a message to the server
connection.Send(line).Wait();
}
}
}
}
SignalR Webアプリホスト:
namespace SignalrServer.Hubs
{
public class Chat : Hub
{
public void Send(string message)
{
// Call the addMessage method on all clients
Clients.All.addMessage(message);
Clients.Group("RoomA").addMessage("Group Message " + message);
}
//server
public void Join(string groupName)
{
Groups.Add(Context.ConnectionId, groupName);
}
}
}
Default.aspx
<script src="http://code.jquery.com/jquery-1.8.2.min.js" type="text/javascript"></script>
<script src="Scripts/jquery.signalR-1.0.1.min.js" type="text/javascript"></script>
<!-- If this is an MVC project then use the following -->
<!-- <script src="~/signalr/hubs" type="text/javascript"></script> -->
<script src="signalr/hubs" type="text/javascript"></script>
<script type="text/javascript">
$(function () {
// Proxy created on the fly
var chat = $.connection.chat;
// Declare a function on the chat hub so the server can invoke it
chat.client.addMessage = function (message) {
$('#messages').append('<li>' + message + '</li>');
};
$.connection.hub.start(function () {
chat.server.join("RoomA");
});
// Start the connection
$.connection.hub.start().done(function () {
$("#broadcast").click(function () {
// Call the chat method on the server
chat.server.send($('#msg').val());
});
});
});
</script>
<div>
<input type="text" id="msg" />
<input type="button" id="broadcast" value="broadcast" />
<ul id="messages">
</ul>
</div>
私が同様のことを行ったのは、選択したオブジェクトを受け入れるメソッドを作成することです。
あなたの新しいクラス
public class MyMessage{
public string Msg { get; set; }
public string Group { get; set; }
}
次に、このオブジェクトを受け入れるメソッドをハブに作成します。
public void Send(MyMessage message)
{
// Call the addMessage method on all clients
Clients.All.addMessage(message.Msg);
Clients.Group(message.Group).addMessage("Group Message " + message.Msg);
}
次に、クライアントからこのオブジェクトを渡すことができます。
chatHub.Invoke<MyMessage>("send", new MyMessage() { Msg = "Hello World", Group = "RoomA" });
JSクライアントからこれを呼び出すこともできます
chat.server.send({ Msg: "Hello World", Group: "RoomA" });
Winform .Net framework 4.0
グループが機能しなくなりました。
サーバーコード:
[HubName("PublicHub")]
public class PublicHub : HubBase
{
/// <summary>
/// join group
/// </summary>
/// <param name="userLoginName"></param>
/// <param name="hotelId"></param>
/// <param name="groupCode"></param>
[HubMethodName("JoinGroup")]
public async Task JoinGroupAsync(string userLoginName, string hotelId, string groupCode)
{
await Groups.Add(Context.ConnectionId, ShopGroupKey(hotelId, groupCode));
Clients.Group(ShopGroupKey(hotelId, groupCode)).UpdateRoomStatus("UpdateRoomStatus", "UpdateRoomStatus");
}
/// <summary>
///
/// </summary>
/// <param name="userLoginName"></param>
/// <param name="hotelId"></param>
/// <param name="groupCode"></param>
[HubMethodName("QuitGroup")]
public async Task QuitGroupAsync(string userLoginName, string hotelId, string groupCode)
{
await Groups.Remove(Context.ConnectionId, ShopGroupKey(hotelId, groupCode));
}
}
クライアントコード:
internal IHubProxy PublicHub;
internal IHubProxy RoomHub;
public static SignalRUtility Instance
{
get
{
if (_instance == null)
{
Host = ConfigurationManager.AppSettings["signalRHost"];
_instance = new SignalRUtility();
}
return _instance;
}
}
private SignalRUtility()
{
Connection = new HubConnection(Host + "/signalr", useDefaultUrl: false);
PublicHub = Connection.CreateHubProxy("PublicHub");
RoomHub = Connection.CreateHubProxy("RoomStatusHub");
RoomHub.On<string>("UpdateRoomStatus", (code) =>
{
if(RoomStatusDelegates != null)
{
RoomStatusDelegates(code);
}
});
RoomHub.On<string>("UpdateOrderStatus", (code) =>
{
if (OrderStatusDelegates != null)
{
OrderStatusDelegates(code);
}
});
Connection.Start().Wait();
}
サーバー側からクライアント側でメッセージを受信しません。 Client.All
はメッセージを送信できます。