IIS 托管 WCF 服务中的 Log4Net

发布于 2024-08-21 21:08:40 字数 1175 浏览 4 评论 0原文

大家好,

我一定已经阅读了大约 20 篇关于如何在 ASP.NET 1.0 / 2.0 和各种其他应用程序类型中实现 log4net 的不同文章/方法。

链接 #1

链接#2

链接#3

好了,以上文章都是好吧,我确实尝试/遵循了所有这些,但我从未得到日志文件..

我有什么: IIS 托管 WCF 服务。

我想要的:

使用 log4net 进行日志记录 - 好吧,首先我想使用跟踪(如 System.Diagnostics 中的 Trace.Write),然后是 Microsoft Enterprise Library,最后我一直在试图弄清楚如何为我的日志记录设置/配置 log4net需要。

我的问题:

如何让 log4net 写入日志文件?我的意思是:

  • 这是一个安全问题吗?我真的需要启动这个吗?
  • 是写入日志文件的问题(安全)吗?
  • 是无法读取配置文件的问题吗?

我尝试过:

  • 使用指定log4net.config

    [程序集:log4net.Config.XmlConfigurator(ConfigFileExtension = "log4net.config", Watch = true)]

  • 在块后面指定 web.config 中的配置。当我这样做时,我无法再运行 Web 应用程序(IIS 报告损坏的 web.config)。

非常感谢对此问题的帮助!

基督教

Good day folks

I must have read about 20 different articles/approaches about how to implement log4net in ASP.NET 1.0 / 2.0 and various other application types.

Link #1

Link #2

Link #3

Well, above articles are all ok, i did try/follow all of them, but i never got a log file..

What i have:
IIS Hosted WCF Service.

What i want:

Logging using log4net - well, first i wanted to use Tracing (like Trace.Write in System.Diagnostics) then the Microsoft Enterprise Library and finally i'm stuck trying to figure out how to setup/configure log4net for my logging needs.

My question:

How to get log4net writing a logfile? i mean:

  • is it a security problem? do i really need to procmon this?
  • is the problem to write to a log file (security)?
  • is the problem that the configuration file cannot be read?

i tried:

  • Specifying the log4net.config using

    [assembly: log4net.Config.XmlConfigurator(ConfigFileExtension = "log4net.config", Watch = true)]

  • Specifying the configuration in web.config after the block. When i did that i wasn't able to run the Web Application anymore (IIS reports corrupt web.config).

Help in this issue is really appreciated!

Christian

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

喜爱纠缠 2024-08-28 21:08:40

好吧,是我的错。这是声明ConfigFileExtension时的声明,log4net搜索.dll。在网络根目录中。只需将其更改为 ConfigFile,它就可以正常工作了。我的粗心错误...!

基督教

Ok, my fault. It was the declaration when ConfigFileExtension is declared, log4net searches for .dll. in the web root. Just changed that to ConfigFile and it's working like a charm. my careless mistake...!

Christian

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文