基本信息
源码名称:微信公众平台开发c#框架源码下载(含发消息demo)
源码大小:0.17M
文件格式:.rar
开发语言:C#
更新时间:2015-05-12
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 1 元×
微信扫码支付:1 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
using System; using System.Web; using System.Xml; using System.Xml.Linq; using WeiXin.Framework.Core; namespace WeiXin.Framework.Web { /// <summary> /// 处理微信请求信息入口控制器 /// </summary> public class WeiXinRequestHandler : IHttpHandler { public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; // 请求方式大写 string httpMethod = context.Request.HttpMethod.ToUpper(); // 响应消息结果字符串对象 object responseXml = string.Empty; try { switch (httpMethod) { // GET方式请求 case "GET": string signature = context.Request.QueryString["signature"], // 微信加密签名 timestamp = context.Request.QueryString["timestamp"], // 时间戳 nonce = context.Request.QueryString["nonce"], // 随机数 echostr = context.Request.QueryString["echostr"];// 随机字符串 // 微信请求参数非空验证 if (!String.IsNullOrEmpty(signature) && !String.IsNullOrEmpty(timestamp) && !String.IsNullOrEmpty(nonce) && !String.IsNullOrEmpty(echostr)) { // 检查加密签名是否正确 if (UtilityHelper.CheckSignature(signature, timestamp, nonce)) { responseXml = echostr; } } break; // POST方式请求 case "POST": if (!string.IsNullOrEmpty(context.Request.Form["weixinMsg"])) { // 处理test.html页面测试的请求,并返回信息 XElement requestXml = XElement.Parse(context.Request.Form["weixinMsg"]); WeiXinApplication weiXinApplication = new WeiXinApplication(requestXml); responseXml = weiXinApplication.GetResponseXml(); } else { // 解析微信请求 XElement requestXml = XElement.Load(context.Request.InputStream); // 处理微信消息请求,并返回信息 WeiXinApplication weiXinApplication = new WeiXinApplication(requestXml); responseXml = weiXinApplication.GetResponseXml(); } break; } } catch (XmlException ex) { responseXml = string.Format("xml解析异常:{0}", ex.Message); } catch (WeiXinHandlerNotFoundException ex) { responseXml = ex.Message; } catch (Exception ex) { responseXml = ex.Message; } context.Response.Clear(); context.Response.Charset = "UTF-8"; context.Response.Write(responseXml); context.Response.End(); } public bool IsReusable { get { return false; } } } }