我有一个ASHX处理程序文件,我将其用于旧版目的(我们有一个无法更新的win32应用程序引用ASHX处理程序)
以下是处理程序,它似乎工作正常,但它不会访问MVC应用程序中其他位置设置的会话变量:
using Core.Helpers;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Script.Serialization;
using System.Web.SessionState;
namespace handlers
{
/// <summary>
/// Summary description for hShowChosenTicketsFGL
/// </summary>
public class hShowChosenTicketsFGL : IHttpHandler, IRequiresSessionState, IReadOnlySessionState
{
public long orderId;
public void ProcessRequest(HttpContext context)
{
List<string> response = new List<string>();
if (context.Session["OrderId"] == null)
orderId = -1;
else
orderId = Convert.ToInt64(context.Session["OrderId"]);
if (orderId == -1)
orderId = Convert.ToInt64(context.Request.QueryString["OrderId"]);
bool ifReturns = false;
if (orderId.ToString().StartsWith("1111"))
ifReturns = true;
if (ifReturns)
orderId = long.Parse(orderId.ToString().Substring(4));
JavaScriptSerializer json = new JavaScriptSerializer();
var fgl = new List<string>();
if(HttpContext.Current.Session["ReceiptFGL"] != null)
{
var text = HttpContext.Current.Session["ReceiptFGL"].ToString();
fgl.Add(text);
HttpContext.Current.Session["ReceiptFGL"] = null;
}
var jsonReponse = json.Serialize(fgl);
context.Response.Write(jsonReponse);
}
public bool IsReusable
{
get
{
return false;
}
}
}
}
我也尝试了路由方法,但无法让它工作,应用程序不断回来并说找不到位置。这是我使用的路线:
routes.MapRoute(
name: "LegacyTicketGet",
url: "handlers/hShowChosenTicketsFGL.ashx",
defaults: new { controller = "API", action = "GetReceiptFGL" }
);
有没有人有任何想法我可能做错了,或者我如何放弃处理程序并使用路由来路由到JsonResult操作?
答案 0 :(得分:0)
这对我有用。我有同样的问题。
确保您继承自System.Web.SessionState.IRequiresSessionState,因此您的ashx文件类应如下所示。
public class ImageHandler : IHttpHandler, System.Web.SessionState.IRequiresSessionState
{
public void ProcessRequest(HttpContext context)
{
string Name = "";
if (context.Session["mysessionvar"] != null)
Name = context.Session["mysessionvar"].ToString();
}
}
仅调用本地主机可能不起作用。可以在IIS安装程序上正常使用。