1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- using Bowin.Common.Mobile;
- namespace EMIS.Web.ServiceControllers
- {
- public class MobileMQController : Controller
- {
- public ActionResult Regist(string key, string address, int port)
- {
- MobileMQ.Regist(key, address, port);
- return Json(true);
- }
- public ActionResult Remove(string key)
- {
- MobileMQ.Remove(key);
- return Json(true);
- }
- }
- }
|