MS CRM Callouts Tip - 在Callouts中调用log4net

news/2024/7/5 21:03:58
CRM中的Callouts未处理的异常信息会被CRM Server记录在Windows的Event Log中,如果要通过log4net实现异常记录,会遇到一个问题 - 在WinForm 程序或者 ASP.NET程序中使用log4net,需要在config文件中配置 log4net 所需的配置节。Callouts作为Class Library 如何来指定其所需的log4net配置节?

方法如下
1)在Callouts 项目中添加 log4net.dll引用
2)使用Assembly 属性指定log4net的配置文件
[assembly: log4net.Config.XmlConfigurator(ConfigFile="C://Program Files//Microsoft CRM//Server//bin//assembly//CrmLog.config", Watch=true)]
3)调用log4net API, 例如
    internal class FileLog
    {
        private static readonly ILog logger = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);

        public void Log(string logEntry)
        {
            logger.Debug(logEntry);
        }
    }


4)上面的CrmLog.config 可以设置如下


   
       

   

   
       
           
           
           
               
           
       
       
           
           
       
   


5)将CrmLog.config及log4net.dll部署Crm Server的Callouts目录下C://Program Files/Microsoft CRM/Server/bin/assembly/



http://www.niftyadmin.cn/n/3657250.html

相关文章

Linux V4L2驱动框架分析之(四):sensor驱动

系列文章: Linux V4L2驱动框架分析之(一):架构介绍 Linux V4L2驱动框架分析之(二):平台v4l2设备驱动 Linux V4L2驱动框架分析之(三):v4l2设备的缓存管理 Linu…

[概念] 激励理论-海兹伯格激励理论(Herzberg's theory of motivation)

详见http://www.netmba.com/mgmt/ob/motivation/herzberg/Herzberg found that the factors causing job satisfaction (and presumably motivation) were different from those causing job dissatisfaction. He developed the motivation-hygiene theory to explain these re…

项目经理的角色(Roles of Project Manager)

来自 http://www.yancy.org/research/project_management/human_resources.html * Integrator o PM is the most likely person who can view both the project and the way it fits into the overall plan for the organization. o Must coordinate the …

组织结构 - 职能型,矩阵型和项目型

PMBOK(2004 3rd 英)P28中介绍了几种组织结够,包括职能型(Functional) ,矩阵型(Matrix)和项目型(Projectized) 。其中矩阵型又分为Weak Matrix,Balanced Matrix和Strong Matrix. 书中只是从项目经理职权的角度比较了这几种组织结构的不同。下面是一些补充…

Project Management 101 lessons

101这个数字在西方也许有什么特殊的含义 - 因为知道asp101.com,今天发现了Project Management 101- http://www.suite101.com/course.cfm/17517。 好像二战中美国有个101空降师,王牌部队,所以101代表王牌?作者说世界上有三种人&am…

FastDFS配置文件详解之tracker.conf

本文转自 http://bbs.chinaunix.net/thread-1941456-1-1.html,如果您也转载,请注明出处。 ----------------------------------------------------------------------------------------------------------------------------------------------------…

[概念] 质量规划工具 - Affinity Diagram

PMBOK (2004 3rd 英) P186中提到了一些质量规划工具的名称,并没有详细说明。其中提到了Affinity Diagram,详细如下:http://www.skymark.com/resources/tools/affinity_diagram.asp概念和作用The affinity diagram, or KJ method (after its author, Kawa…

FastDFS配置文件详解之storage.conf

本文转自 http://bbs.chinaunix.net/thread-1941456-1-1.html, 如果您要转载,请注明出处。 ---------------------------------------------------------------------------------------------------------------------------------------------------…