基于ajax与msmq技术的消息推送功能实现代码

作者:玻璃鱼儿 时间:2024-05-03 15:31:52 

周末在家捣鼓了一下消息推送的简单例子,其实也没什么技术含量,欢迎大伙拍砖。

我设计的这个推送demo是基于ajax长轮询+msmq消息队列来实现的,具体交互过程如下图:

基于ajax与msmq技术的消息推送功能实现代码

先说说这个ajax长轮询,多长时间才算长呢?这个还真不好界定。

这里是相对普通ajax请求来说的,通常处理一个请求也就是毫秒级别的时间。但是这里的长轮询方式

在ajax发送请求给服务器之后,服务器给调用端返回数据的时间多长那可还真不好说。嘿嘿,这关键要看

我们啥时候往msmq队列中推送数据了,先看看推送的效果图吧。。。。。

基于ajax与msmq技术的消息推送功能实现代码

抱歉,没弄张动态效果图给大家。实现的功能大体上就是这样。上图中的winform程序中我们点击即刻发送按钮,同时网页上我们就能看到新推送的数据。

好了,说完具体实现流程和效果之后马上就开始编码实现吧。。。。

消息推送Winform程序代码


namespace SenderApp
{
 public partial class Form1 : Form
 {
   private string queueName = @".\Private$\pushQueue";
   private MessageQueue pushQueue = null;

public Form1()
   {
     InitializeComponent();
   }

private void button1_Click(object sender, EventArgs e)
   {
     try
     {
       var queue = this.GetQueue();
       if (string.IsNullOrEmpty(this.textBox1.Text)) { this.label1.Text = "推送消息不能为空"; return; }
       queue.Send(this.textBox1.Text, "messagePush");
       this.label1.Text = "消息推送成功";
     }
     catch (Exception ex)
     {
       this.label1.Text = string.Format("消息推送失败:{0}",ex.Message);
     }
   }

private MessageQueue GetQueue()
   {
     if (this.pushQueue == null)
     {
       if (!MessageQueue.Exists(queueName))
       {
         this.pushQueue = MessageQueue.Create(queueName);
       }
       else
       {
         this.pushQueue = new MessageQueue(queueName);
       }
     }
     return this.pushQueue;
   }

private void textBox1_MouseDown(object sender, MouseEventArgs e)
   {
     this.textBox1.Text = "";
     this.label1.Text = "推送状态";
   }
 }
}

Web服务端代码


namespace MessagePushWeb.Controllers
{
 public class HomeController : Controller
 {
   private static string queueName = @".\Private$\pushQueue";
   private static MessageQueue pushQueue = null;

public ActionResult Index()
   {
     return View();
   }

public async Task<ActionResult> GetMessage()
   {
     string msg = await Task.Run(() => {
       return this.ReadMessage();
     });

return Content(msg);
   }

private MessageQueue GetQueue()
   {
     if (pushQueue == null)
     {
       if (MessageQueue.Exists(queueName))
       {
         pushQueue = new MessageQueue(queueName);
         pushQueue.Formatter = new XmlMessageFormatter(new string[] { "System.String" });
       }
     }
     return pushQueue;
   }

private string ReadMessage()
   {
     var queue = GetQueue();
     Message message = queue.Receive();
     return message.Body.ToString();
   }
 }
}

页面视图代码


@{
 ViewBag.Title = "Push";
}

<h2>Push</h2>

<div>接收消息列表</div>
<div id="msg"></div>

<script type="text/javascript">
 $(function () {
   getMessage();
 });

function getMessage() {
   $.get("/home/getmessage", {}, function (data) {
     var _msg = $("#msg").html();
     $("#msg").html(_msg + "<li>" + data + "</li>");
     getMessage();
   });
  }
</script>

当然,在这个只是一个初级的消息推送demo,是否能胜任生产环境的需要还有待考证。

如果你也有更好的实现和建议,都欢迎留言给我。

源码在这里:http://pan.baidu.com/s/1hsHSLTy

来源:http://www.cnblogs.com/huangzelin/p/6218398.html

标签:ajax,消息推送
0
投稿

猜你喜欢

  • MySQL中两种快速创建空表的方式的区别

    2008-12-17 14:34:00
  • CSS hack:区分IE6,IE7,firefox

    2007-12-23 10:25:00
  • 如何修复MySQL数据库表

    2009-03-20 13:24:00
  • 学生信息管理系统Python面向对象版

    2021-11-11 03:11:04
  • Python 多线程共享变量的实现示例

    2022-12-17 09:39:10
  • MYSQL日志的正确删除方法详解

    2024-01-22 13:18:02
  • Python对象类型及其运算方法(详解)

    2023-08-30 09:11:59
  • 详解php中的类与对象(继承)

    2023-11-23 14:07:09
  • 零基础写python爬虫之爬虫编写全记录

    2021-09-06 22:53:27
  • JavaScript高级程序设计 扩展--关于动态原型

    2024-04-10 11:03:50
  • 利用PHP实现递归删除链表元素的方法示例

    2024-04-23 09:09:41
  • MySQL中的多表联合查询功能操作

    2024-01-21 07:21:30
  • SQL Server 作业同步 (结合备份作业)

    2012-07-11 15:59:47
  • vue 表单之通过v-model绑定单选按钮radio

    2023-07-02 16:28:04
  • python实现嵌套列表平铺的两种方法

    2021-06-12 07:20:02
  • Python中enumerate()函数编写更Pythonic的循环

    2023-06-09 14:01:29
  • python+selenium 定位到元素,无法点击的解决方法

    2022-02-01 12:29:52
  • 计算机程序设计并行计算概念及定义全面详解

    2023-02-20 22:35:59
  • sql with as用法详解

    2024-01-18 22:43:15
  • Python代码实现双链表

    2021-12-26 15:55:04
  • asp之家 网络编程 m.aspxhome.com