2011-02-10 3 views
0

system.web.management.webeventprovider를 상속하는 파일 정리 공급자를 만들었습니다.asp.net의 Health Mornitoring에서 문제 발생

Public Class FileCleanupProvider 
    Inherits System.Web.Management.WebEventProvider 

    Private Const StateFIleFolderPath As String = "StateData/" 


    Public Overrides Sub Initialize(ByVal name As String, ByVal config As System.Collections.Specialized.NameValueCollection) 
     MyBase.Initialize(name, config) 
    End Sub 


    Public Overrides Sub Flush() 
     ' not required 
    End Sub 


    Public Overrides Sub ProcessEvent(ByVal raisedEvent As System.Web.Management.WebBaseEvent) 

     Dim DateTimeRaised As DateTime = raisedEvent.EventTime 
     ' Remove files 
     Dim FilePath As String = IO.Path.Combine(HttpRuntime.AppDomainAppPath, StateFIleFolderPath) 
     For Each FileName In IO.Directory.GetFiles(FilePath) 
      If (DateTimeRaised - IO.File.GetCreationTime(FileName)) > TimeSpan.FromHours(6) Then 
       IO.File.Delete(FileName) 
      End If 
     Next 

    End Sub 


    Public Overrides Sub ShutDown() 
     'Clean up on shut down 
     Dim FilePath As String = IO.Path.Combine(HttpRuntime.AppDomainAppPath, StateFIleFolderPath) 
     For Each FileName In IO.Directory.GetFiles(FilePath) 
      IO.File.Delete(FileName) 
     Next 
    End Sub 

End Class 

는 내가 Web.config의이

<healthMonitoring enabled="true" heartbeatInterval="5"> 
     <providers> 
     <add name="FileCleanupProvider" type="System.Web.Management.WebEventProvider"/> 
     </providers> 
     <profiles> 
     <remove name="Default"/> 
     <add name="Default" minInstances="1" maxLimit="Infinite" minInterval="00:01:00" custom=""/> 
     </profiles> 
     <eventMappings> 
     <remove name="Heartbeats"/> 
     <add name="Heartbeats" type="System.Web.Management.WebHeartbeatEvent,System.Web,Version=2.0.0.0,Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a" startEventCode="0" endEventCode="2147483647" /> 
     </eventMappings> 
     <!--<eventMappings> 
     <add name="FileCleanupEvent" type="System.Web.Management.WebHeartbeatEvent" startEventCode="0" endEventCode="2147483647"/> 
     </eventMappings>--> 
     <rules> 
     <clear/> 
     <add name="FileCleanupRule" eventName="Heartbeats" provider="FileCleanupProvider" profile="Default"/> 
     </rules> 
    </healthMonitoring> 

에서 구성하지만 한 가지 문제가있어.

enter image description here

나는 그것을 해결할 수 있습니까?

답변

1

당신은 구성에 클래스를 지정해야합니다

<add name="FileCleanupProvider" type="YourNameSpace.FileCleanupProvider,AssemblyName,Version=0.0.0.0,Culture=neutral,PublicKeyToken=PublicKeyHere"/> 

닷넷은 즉석에서 클래스의 인스턴스를 생성되므로 클래스는 "유효"해야합니다.