在控制台应用程序上的ASP.NET WebAPI中托管WebSocket服务器

时间:2014-03-17 10:11:39

标签: angularjs asp.net-web-api websocket

我构建了一个托管在控制台应用程序上的ASP.NET WebAPI。我创建了一些web apis并且运行良好。然后我尝试在它上实现Web套接字服务。服务器端代码如下所示

[RoutePrefix("api/notification")]
public class NotificationController : ApiController
{
    [HttpGet]
    [Route("")]
    public HttpResponseMessage Get()
    {
        if (HttpContext.Current.IsWebSocketRequest)
        {
            HttpContext.Current.AcceptWebSocketRequest(new NotificationWebSocketHandler());
            return Request.CreateResponse(HttpStatusCode.SwitchingProtocols);
        }
        else
        {
            return Request.CreateResponse(HttpStatusCode.BadRequest);
        }
    }

    public class NotificationWebSocketHandler : WebSocketHandler
    {
        private static WebSocketCollection _clients;

        static NotificationWebSocketHandler()
        {
            _clients = new WebSocketCollection();

            Task.Factory.StartNew(() =>
                {
                    while (true)
                    {
                        Task.Delay(TimeSpan.FromSeconds(5));
                        if (_clients.Count > 0)
                        {
                            _clients.Broadcast(Guid.NewGuid().ToString());
                        }
                    }
                });
        }

        public override void OnOpen()
        {
            _clients.Add(this);
            Console.WriteLine("Web socket client opened, client count = {0}", _clients.Count);
        }

        public override void OnClose()
        {
            _clients.Remove(this);
            Console.WriteLine("Web socket client closed, client count = {0}", _clients.Count);
        }
    }
}

但是当我打开客户端页面(构建在AngularJS上)时,我收到了错误消息WebSocket connection to 'ws://10.222.115.220:8080/api/notification/' failed: Error during WebSocket handshake: Unexpected response code: 500

我的客户端代码是

app.shared.controllers.controller('DashboardCtrl', function ($q, $scope) {
    var ws = new WebSocket("ws://10.222.115.220:8080/api/notification/");
    ws.onopen = function () {
        console.log('web socket opened');
    }
    ws.onmessage = function (message) {
        $scope.seed = message;
    };

    $scope.seed = '(empty)';
});

当我附加调试并在我的Get函数的条目中添加断点时,我发现错误500是在没有此断点命中的情况下引发的。我认为这意味着错误是由WebAPI内部生成的。

我不确定我的代码中是否有任何错误,或者WebSocket功能不支持控制台应用程序主机。

1 个答案:

答案 0 :(得分:3)

您在“自我主机”模式中使用Web API吗? (托管在控制台中)

你有问题,对象HttpContext.Current是“null”。 这是自托管的问题。使用IIS(Web托管)时设置HttpContext.Current。在自托管期间不提供此属性。我想这可能是你的问题。 (在您的web-api-application中抛出null-ref-exception并返回500 - 内部服务器错误。)