码迷,mamicode.com
首页 > 微信 > 详细

微信接受请求的接口

时间:2015-01-29 09:15:59      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:

using System;
using System.Web;
using WeiXin.Core;
using Framework.Core;
using Newtonsoft.Json;

namespace WeiXin
{
    public class ReceiveHttpHandler : IHttpHandler
    {
        public void ProcessRequest(HttpContext context)
        {
            Logger.Write("request:" + context.Request.Url);
            string json = Newtonsoft.Json.JsonConvert.SerializeObject(context.Request.Params);
            try
            {
                if (context.Request.HttpMethod.ToLower() == "get")
                {
                    if (context.Request.Url.Query != string.Empty)
                    {
                        context.Response.Write(AccessTo.Validation(context));
                    }
                    else
                    {
                        context.Response.Write("success");
                    }
                }
                else
                {
                    string msgType = string.Empty;
                    string XML = RequestHelper.GetFormData();
                    //Logger.Write("XML:"+XML);
                    context.Items.Add("XML", XML);//module和handler之间组织和共享数据的集合
                    if (XML.Contains("<xml>"))
                    {
                        msgType = XmlHelper.XMLSelect(XML);                        
                    }
                    if (SpringContainer.ContainObject(msgType))
                    {
                        IProcess process = SpringContainer.GetObject<IProcess>(msgType);
                        process.Process();
                    }
                }
            }
            catch (Exception ex)
            {
                Logger.Write("接受请求失败,原因:" + ex.Message);               
            }
        }

        public bool IsReusable
        {
            get { return true; }
        }
    }
}

 

微信接受请求的接口

标签:

原文地址:http://www.cnblogs.com/slu182/p/4257792.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!