2010-03-17 2 views
0

Это исключение, которое я получаю при запуске приложения с установленным Managed Fusion Url Rewriter.Как исправить метод HttpRuntime.get_UsingIntegratedPipeline() не найден?

Сведения об исключении: System.MissingMethodException: Метод не найден: 'Boolean 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.

Трассировка стека:

[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 

я .NET 2.0 SP1 установлен на моем сервере, который бросает эту ошибку.

ответ

0

Необходимо установить .NET 2.0 SP2, этот метод был добавлен для указания программам, если программа запущена в режиме Integrated Pipeline (IIS 7.0+) или нет (IIS 6.0).

Смежные вопросы