- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在我的 ASP.NET MVC 3 应用程序 (vb.net) 中使用 Microsoft.VisualBasic.Logging.FileLogTraceListener。它可以在我的开发 PC 上运行,但从 IIS 6 服务器运行时会抛出错误。这是我使用的 web.config:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.diagnostics>
<trace autoflush="true" />
<sources>
<source name="requests" switchValue="All">
<listeners>
<remove name="default" />
<add name="txtfile" />
</listeners>
</source>
</sources>
<sharedListeners>
<add name="txtfile" type="Microsoft.VisualBasic.Logging.FileLogTraceListener,
Microsoft.VisualBasic, Version=8.0.0.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a,
processorArchitecture=MSIL"
location="custom"
customlocation="D:\PROJECTS\saidproject\App_Data"
logfilecreationschedule="weekly"
/>
</sharedListeners>
</system.diagnostics>
</configuration>
我得到的错误是这样的:
System.Configuration.ConfigurationErrorsException: Could not create Microsoft.VisualBasic.Logging.FileLogTraceListener, Microsoft.VisualBasic, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL. ---> System.UnauthorizedAccessException: Access to the path 'C:\Documents and Settings\Default User\Application Data\Microsoft Corporation\Internet Information Services\6.0.3790.3959' is denied.
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.Directory.InternalCreateDirectory(String fullPath, String path, Object dirSecurityObj)
at System.IO.Directory.CreateDirectory(String path)
at System.Windows.Forms.Application.GetDataPath(String basePath)
at System.Windows.Forms.Application.get_UserAppDataPath()
at Microsoft.VisualBasic.Logging.FileLogTraceListener..ctor(String name)
at Microsoft.VisualBasic.Logging.FileLogTraceListener..ctor()
看起来 FileLogTraceListener 尝试写入 C:\Documents and Settings\Default User\Application Data\Microsoft Corporation\Internet Information Services\6.0.3790.3959
但失败。
实际上,Default User\Application Data
中不存在文件夹 Microsoft Corporation\Internet Information Services\6.0.3790.3959
。我尝试创建它,为每个人分配完全访问权限,但我仍然遇到相同的错误。
是否可以从 ASP.NET MVC 应用程序使用 Microsoft.VisualBasic.Logging.FileLogTraceListener?
最佳答案
非常抱歉,我的错误!
我在不同服务器上添加了C:\Documents and Settings\Default User\Application Data\Microsoft Corporation\Internet Information Services\6.0.3790.3959
。在正确的服务器上添加 \Microsoft Corporation\Internet Information Services\6.0.3790.3959
并授予对其写入访问权限后,日志记录正常工作。
关于asp.net-mvc-3 - 将 Microsoft.VisualBasic.Logging.FileLogTraceListener 与 ASP.NET MVC 3 结合使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7793562/
有没有办法指示 FileLogTraceListener 在磁盘空间不足时删除旧日志文件? 干杯。 最佳答案 您应该设置 ReserveDiskSpace属性为您喜欢的大小和 DiskSpaceExh
我想弄清楚为什么我们的一个遗留应用程序每天都会抛出异常。它是一个 VB.Net Windows 服务,它使用 Microsoft.VisualBasic.Logging.FileLogTraceLis
我正在尝试在我的 ASP.NET MVC 3 应用程序 (vb.net) 中使用 Microsoft.VisualBasic.Logging.FileLogTraceListener。它可以在我的开发
我是一名优秀的程序员,十分优秀!