首页 > 代码库 > 微信响应文本消息
微信响应文本消息
using System;using System.Collections.Generic;using System.Web;using YTO.WeiXin.BLL;using YTO.WeiXin.BLL.Interface;using YTO.WeiXin.Core;using YTO.WeiXin.Model;namespace YTO.WeiXin.Process{ public class TextProcess : IProcess { IAuthorizationBiz AuthorizationBiz { get; set; } IContactBiz ContactBiz { get; set; } public void Process() { HttpContext context = HttpContext.Current; string paramXML = context.Items["XML"].ToString(); //Logger.Write("paramXML:" + paramXML); TextInfo Info = XmlHelper.XmlDeserialize<TextInfo>(paramXML); AuthorizationInfo authInfo = new AuthorizationInfo { OpenId = Info.FromUserName }; IList<AuthorizationInfo> authList = AuthorizationBiz.Query(authInfo); string reccontent = Info.Content; string[] str = reccontent.Split(‘ ‘); TextSendInfo SendInfo = new TextSendInfo(); SendInfo.ToUserName = Info.FromUserName; SendInfo.FromUserName = Info.ToUserName; SendInfo.CreateTime = DateTime.Now.ToString(); SendInfo.MsgType = MsgTypeEnum.text.ToString(); if (authList.Count > 0 && authList[0].Status == "已授权") { if (str.Length > 1 && !string.IsNullOrEmpty(str[1]))//如果格式正确 { //Logger.Write("str[1]:" + str[1]); ContactInfo contactInfo = new ContactInfo { CenterName = str[1].Trim() }; IList<ContactInfo> list = ContactBiz.Query(contactInfo); if (list.Count > 0)//数据库中有相关信息 { string content = string.Format(JobBase.GetConfParamValue(ParamEnum.CenterQueryResponse), list[0].CenterName, list[0].Name, list[0].PhoneNumber, list[0].Address); SendInfo.Content = content; } else//未查询到相关信息 { SendInfo.Content = JobBase.GetConfParamValue(ParamEnum.CenterNotExist);//"该中心不存在,请重新输入。如有问题,请联系021-69777911"; } } else//格式不正确 { SendInfo.Content = JobBase.GetConfParamValue(ParamEnum.CenterFormatError);//"请确认输入信息格式正确后,重新输入。如有问题,请联系021-69777911"; } } else { SendInfo.Content = JobBase.GetConfParamValue(ParamEnum.AuthWarning);//"请先在授权页面申请授权,再使用该功能!"; } string xml = XmlHelper.CustomXMLSerialize<TextSendInfo>(SendInfo, string.Empty); //Logger.Write("xml:" + xml); ResponseHelper.Success(xml); } }}
微信响应文本消息
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。