在SignalR中呼叫特定客户端

时间:2013-04-02 10:45:02

标签: asp.net signalr signalr.client

我正在开发一个SignalR应用程序,其中一组.NET控制台客户端连接到Web服务器。如何使用SignalR从服务器调用特定客户端。

在我当前的应用程序中,当我从服务器端单击按钮时。它会触发所有控制台客户端。 但我想要触发的是将所有客户信息保存在server.html上并致电特定客户。

目前这是我的控制台应用程序

class Program
{
    static void Main(string[] args)
    {
        var connection = new Connection("http://localhost:65145/printer");

        //Establishing the connection
        connection.Start().ContinueWith(task =>
        {
            if (task.IsFaulted)
            {
                Console.WriteLine("Failed to start: {0}", task.Exception.GetBaseException());
            }
            else
            {
                Console.WriteLine("Success! Connected with client connection id {0}", connection.ConnectionId);
            }
        });

        //Reciveing data from the server
        connection.Received += data =>
        {
            Console.WriteLine("Receiving print request from server");
            Console.WriteLine(data);    
        };

        Console.ReadLine();
    }
}

这是服务器端。

调用客户端的服务器html

<script type="text/javascript">
        $(function () {
            var connection = $.connection('/printer');

          connection.received(function (data) {
              //$('#messages').append('<li>' + data + '</li>');
          });

          connection.start().done(function() { 
              $('#print').click(function () {
                  var printThis = { value: 113, reportId: 'Report', printer: '3rd Floor Lazer Printer', Copies: 1 };
                  connection.send(JSON.stringify(printThis));
              });
          });
      });
  </script>

Global.asax中

    protected void Application_Start(object sender, EventArgs e)
    {
        RouteTable.Routes.MapHubs();
        RouteTable.Routes.MapConnection<MyConnection>("printer", "/printer");

    }

1 个答案:

答案 0 :(得分:3)