2010-03-17 6 views
0

Managed Fusion Url Rewriter이 설치된 응용 프로그램을 실행할 때 예외적입니다.HttpRuntime.get_UsingIntegratedPipeline() 메소드가 예외를 찾을 수 없다는 것을 어떻게 수정합니까?

예외 정보 : System.MissingMethodException : 메서드를 찾을 수 없습니다 : '부울 System.Web.HttpRuntime.get_UsingIntegratedPipeline()'.

소스 오류 :

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

스택 추적 :이 오류를 던지고 내 서버에 .NET 2.0 SP1을 설치 한

[MissingMethodException: Method not found: 'Boolean System.Web.HttpRuntime.get_UsingIntegratedPipeline()'.] 
    ManagedFusion.Rewriter.RewriterModule.context_BeginRequest(Object sender, EventArgs e) in C:\Users\Nick\Documents\Projects\Managed Fusion (Open Source)\ManagedFusion.Rewriter\Source\RewriterModule.cs:162 
    System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +92 
    System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +64 

.

답변

0

.NET 2.0 SP2을 설치해야합니다.이 메서드는 프로그램이 통합 파이프 라인 모드 (IIS 7.0 이상)에서 실행 중인지 (IIS 6.0) 여부를 나타 내기 위해 추가되었습니다.

관련 문제