9

我的 ASP.NET MVC 4 Web 应用程序向客户端显示频繁更新的数据。数据源自外部源(安装在服务器上的应用程序)并由 SQL Server 2008 R2 处理。

目前的数据流非常传统:客户端从 ASP.NET 轮询,ASP.NET 轮流从 SQL Server 轮询。

为了避免轮询(现在我需要在 Web 应用程序的用户之间进行实时交互),我正在更改推送方法,signalR用于向客户端广播数据。这增加了用户体验的流畅性,也减少了客户端和 ASP.NET 服务器之间轮询的开销。

现在的问题是反转 SSRV 和 ASP.NET 之间的流程:我想以最有效的方式将数据从 SSRV 推送到 ASP.NET 。

SSRV 正在运行昂贵的查询来导入一些外部数据——一旦数据被处理,它们也可以通过广播在 Internet 上共享。

我目前的穷人方法:向 Web 应用程序(在本地主机上)发出 POST Http 请求以发送数据(为此我使用 CLR 函数)。

处理完数据后,我将它们打包准备好,将它们HttpWebRequest排队到 Service Broker 中以避免影响其他活动,然后我就完成了。

我已经注销了SqlDependency,因为这会迫使我查询数据——这不是一个很大的优势(我会用 localhost HTTP 请求来换取在 SQL Server 上运行的查询)

同时我觉得应该有一个更整洁的方法来做到这一点。

有什么建议么?

4

2 回答 2

7

好吧,我意识到 SignalR.Client.NET.35 库有点晚。

在撰写本文时,它没有打包在 NuGet 中,因此必须从 GitHub SignalR 项目站点下载代码并作为项目添加到解决方案中(需要SignalR.Client.NETSignalR.Client.NET35)。

这是最终的解决方案,以防将来可以帮助某人:

using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Data;
using System.Xml;
using Microsoft.SqlServer.Server;
using System.Data.SqlTypes;
using System.Net;
using System.IO;
using System.Xml.XPath;
using SignalR.Client.Hubs;

    internal static HubConnection connectionT = null;
    internal static IHubProxy msgHubT = null;

    /// <summary>
    /// allows SSRV to send a message to the Web Socket hub
    /// </summary>
    /// <param name="URL">URL of the Hub</param>
    /// <param name="hubName">Name of the message Hub to be used for broadcasting.</param>
    /// <param name="hubMethod">Hub method to be used for broadcasting.</param>
    /// <param name="message">Message to be broadcasted.</param>
    [SqlFunction()]
    public static void ut_sendMsgToHub(string URL, string hubName, string hubMethod, string message)
    { 
      try
        {
        if (connectionT == null)
        {
            connectionT = new HubConnection(URL.Trim()); // "http://localhost:56844/M2Hub"
        }
        if (msgHubT == null)
        {
            msgHubT = connectionT.CreateProxy(hubName.Trim());//"M2data"
        }

            if (!(connectionT.State == SignalR.Client.ConnectionState.Connected 
                || connectionT.State == SignalR.Client.ConnectionState.Reconnecting
                 || connectionT.State == SignalR.Client.ConnectionState.Connecting))
                connectionT.Start().Wait();
            msgHubT.Invoke(hubMethod.Trim(), message.Trim()).Wait();//"Send"
        }
        catch (Exception exc)
        {
            SqlContext.Pipe.Send("ut_sendMsgToHub error: " + exc.Message + Environment.NewLine);
        }
    }

需要注意的重要一点:连同已编译的 SQL SERVER 2008R2 CLR 库,您必须将以下 dll 放在同一文件夹中:

  • 牛顿软件.Json
  • SignalR.Client.Net35 显然
  • SM诊断
  • System.Runtime.Serialization
  • 正确版本中的 System.ServiceModel(如果不兼容,请参阅 C:\Windows\assembly 中 GAC 中所述的版本)。
  • 系统线程

最后在 SQL SERVER 中:

CREATE ASSEMBLY CLR_Bridge from 'C:\PathToLibraries\Library_CLR.dll' 
WITH PERMISSION_SET = UNSAFE --UNSAFE required
CREATE PROCEDURE ut_sendMsgToHub 
@url nchar(125) ,
@hubName nchar(75),
@hubMethod NCHAR(75),
@message NVARCHAR(MAX)
AS
EXTERNAL NAME CLR_Bridge.[LibraryNamespace.CLR_Bridge].ut_sendMsgToHub 

为了调用 ut_sendMsgToHub,我使用了一个服务代理,以便我确信函数执行的任何问题都与处理数据的存储过程分离

于 2012-08-29T15:35:55.913 回答
1

你看过SignalR吗?您可以使用它将数据异步推送到您的 UI(尽管它不是真正的推送)。对于您的具体情况,这可能无法接受,但我建议您看一下。可能是你需要的。希望有帮助。

于 2012-06-14T18:57:51.343 回答