<%@ WebHandler Language="C#" Class="Kernel" %> using System; using System.Collections.Generic; using System.Web; using System.Data; using System.Web.SessionState; using System.Text; using eMIS; public class Kernel : IHttpHandler , IRequiresSessionState { private string flowId = null; private string nodeId = null; private string endorseNodeType = "1"; private string action = null; public void ProcessRequest (HttpContext context) { eMIS.WebManager.flow_endorse2 flow = new eMIS.WebManager.flow_endorse2(); context.Response.Write(flow.Execute(context)); } public bool IsReusable { get { return false; } } }