多线程中使用HttpContext.Current为null的解决办法

时间:2023-02-16 09:27:00

HttpContext.Current.Server.MapPath(logFile)   这个是得到具体路径的方法  正常情况下是可以的 多线程情况下就为null

下边的代码原本的作用是把网站的异常错误信息写入log.txt中

这里抽出部分代码是我测试System.Timers.Timer的

把网站的异常错误信息写入log.txt的原代码在这里:http://www.cnblogs.com/0banana0/archive/2012/05/04/2483246.html

多线程中使用HttpContext.Current为null的解决办法
public static void LogException(Exception exc, string source)
{ string logFile = "App_Data/ErrorLog.txt"; //多线程的话HttpContext.Current这个会为null就执行else里边的东东
if (HttpContext.Current != null)
{
logFile = HttpContext.Current.Server.MapPath(logFile);
}
else
{
//多线程执行这里
logFile = logFile.Replace("/", "\\");
if (logFile.StartsWith("\\"))//确定 String 实例的开头是否与指定的字符串匹配。为下边的合并字符串做准备
{
logFile = logFile.TrimStart('\\');//从此实例的开始位置移除数组中指定的一组字符的所有匹配项。为下边的合并字符串做准备
}
       //AppDomain表示应用程序域,它是一个应用程序在其中执行的独立环境       
       //AppDomain.CurrentDomain 获取当前 Thread 的当前应用程序域。
       //BaseDirectory 获取基目录,它由程序集冲突解决程序用来探测程序集。
        //AppDomain.CurrentDomain.BaseDirectory综合起来就是返回此代码所在的路径
       //System.IO.Path.Combine合并两个路径字符串
       //Path.Combine(@"C:\11","aa.txt") 返回的字符串路径如后: C:\11\aa.txt
logFile=System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, logFile);
} // Open the log file for append and write the log
StreamWriter sw = new StreamWriter(logFile, true);
sw.Write("******************** " + DateTime.Now);
sw.WriteLine(" ********************");
if (exc == null)
{
sw.Write(source);
} sw.WriteLine();
sw.Close();
}
多线程中使用HttpContext.Current为null的解决办法

Global.aspx里面的代码如下

多线程中使用HttpContext.Current为null的解决办法
void Application_Start(object sender, EventArgs e)
{
//在应用程序启动时运行的代码 System.Timers.Timer t = new System.Timers.Timer(1000);
t.Elapsed += new System.Timers.ElapsedEventHandler(OnTimedEvent);
t.AutoReset = true;
t.Enabled = true;
}
private static void OnTimedEvent(object sender, EventArgs e)
{
ExceptionUtility.LogException(null, "Timer: Hello World");
}
多线程中使用HttpContext.Current为null的解决办法

网站启动后没隔一秒给log.txt中写入一次

******************** 2012/5/11 19:19:35 ********************
Timer: Hello World

这个只是简单的示例介绍timer的 以及遇到多线程HttpContext.Current为null的解决办法

解决办法在这里找到的:http://topic.csdn.net/u/20090103/15/4e8b403e-5dfd-4afd-a364-1c38a18e5a03.html

多线程中使用HttpContext.Current为null的解决办法的更多相关文章

  1. WCF Service中HttpContext.Current为null的解决办法

    1. 在hosting WCF的web.config中加入: <system.serviceModel> <serviceHostingEnvironment aspNetCompa ...

  2. ASP&period;NET多线程下使用HttpContext&period;Current为null解决方案 2015-01-22 15&colon;23 349人阅读 评论&lpar;0&rpar; 收藏

    问题一:多线程下获取文件绝对路径 当我们使用HttpContext.Current.Server.MapPath(strPath)获取绝对路径时HttpContext.Current为null,解决办 ...

  3. ASP&period;NET多线程下使用HttpContext&period;Current为null解决方案 2015-01-22 15&colon;23 350人阅读 评论&lpar;0&rpar; 收藏

    问题一:多线程下获取文件绝对路径 当我们使用HttpContext.Current.Server.MapPath(strPath)获取绝对路径时HttpContext.Current为null,解决办 ...

  4. ASP&period;NET多线程下使用HttpContext&period;Current为null解决方案

    多线程或者异步调用中如何访问HttpContext? 前面我还提到在APM模式下的异步完成回调时,访问HttpContext.Current也会返回null,那么此时该怎么办呢? 答案有二种:1. 在 ...

  5. 多线程中遇到ASSERT&lpar;pMap-&gt&semi;LookupPermanent&lpar;hWndOrig&rpar; &equals;&equals; NULL&rpar;&semi;怎么解决

    XP下用VC开发的程序,在一个主线程调用3   个线程,线程之间要共享数据,结果总出现wincore.cpp   line   980   ASSERT(pMap-> LookupPermane ...

  6. ASP&period;NET多线程下使用HttpContext&period;Current

    本来要实现asp.net下使用tcp通讯方式向服务器获取数据,开始采用的方式是 参考: ASP.NET多线程下使用HttpContext.Current为null解决方案 http://www.cnb ...

  7. Spring MVC普通类或工具类中调用service报空空指针的解决办法&lpar;调用service报java&period;lang&period;NullPointerException&rpar;

    当我们在非Controller类中应用service的方法是会报空指针,如图: 这是因为Spring MVC普通类或工具类中调用service报空null的解决办法(调用service报java.la ...

  8. 解决Asp&period;net Mvc中使用异步的时候HttpContext&period;Current为null的方法

    在项目中使用异步(async await)的时候发现一个现象,HttpContext.Current为null,导致一系列的问题. 上网查了一些资料后找到了一个对象: System.Threading ...

  9. &period;net webapi 中使用session是出错 HttpContext&period;Current&period;Session&equals;&equals;null

    最近在写.net webapi时发现 HttpContext.Current.Session==null  ,导致报错,后来查资料发现webapi中使用session时首先需要开启session功能, ...

随机推荐

  1. &lbrack;译&rsqb;:Orchard入门——构建你的第一个Orchard网站

    原文链接:Building Your First Orchard Site 文章内容基于Orchard 1.8版本 本文将逐步简要介绍Orchard提供的功能.如果你是第一次使用Orchard,本文将 ...

  2. lua协程一则报错解决&OpenCurlyDoubleQuote;attempt to yield across metamethod&sol;C-call boundary”

    问题 attempt to yield across metamethod/C-call boundary 需求跟如下帖子中描述一致: http://bbs.chinaunix.net/forum.p ...

  3. 【英语魔法俱乐部——读书笔记】 0 序&amp&semi;前沿

    [英语魔法俱乐部——读书笔记] 0 序&前沿   0.1 以编者自身的经历引入“不求甚解,以看完为目的”阅读方式,即所谓“泛读”.找到适合自己的文章开始“由浅入深”的阅读,在阅读过程中就会见到 ...

  4. How to select Multiple images from UIImagePickerController &lbrack;duplicate&rsqb;

    accepted You have to use custom imagepicker. And I think ELCImagePickerController is the best option ...

  5. 【筛法求素数】【质因数分解】bzoj2721 &lbrack;Violet 5&rsqb;樱花

    http://www.cnblogs.com/rausen/p/4138233.html #include<cstdio> #include<iostream> using n ...

  6. Apache Bench安装与使用

    一.Apache Bench简介 ApacheBench 是 Apache 服务器自带的一个web压力测试工具,简称ab.ab又是一个命令行工具,对发起负载的本机要求很低,根据ab命令可以创建很多的并 ...

  7. 51Nod 1509加长棒

    传送门 http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1509 现在有三根木棒,他们的长度分别是a,b,c厘米.你可以对他 ...

  8. asp&period;net core 发布centos 7 遇到的坑

    只是简单记录 .net core 在linux 的安装部署步骤,大神可以忽略 虚拟机:VMware Workstation Pro Linux 版本:http://mirrors.aliyun.com ...

  9. 一、Windows许可证即将过期怎么办

    当Win10系统提示“windows许可证即将过期”窗口时,直接点击“转到‘设置’”按钮,此时将显示“Windows激活”界面,从此界面中可以获取当前Win10版本信息. 由于Win10激活即将过期, ...

  10. Browsersync结合gulp和nodemon实现express全栈自动刷新

    Browsersync能让浏览器实时.快速响应你的文件更改(html.js.css.sass.less等)并自动刷新页面.更重要的是 Browsersync可以同时在PC.平板.手机等设备下进项调试. ...