2010-03-17 6 views
0

C'est l'exception que je reçois lorsque j'exécute mon application avec le Managed Fusion Url Rewriter installé.Comment résoudre la méthode HttpRuntime.get_UsingIntegratedPipeline() non trouvée?

Détails des exceptions: System.MissingMethodException: Méthode non trouvée: 'System.Web.HttpRuntime.get_UsingIntegratedPipeline booléen()'.

Erreur Source:

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.

Stack Trace:

[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 

Je .NET 2.0 SP1 installé sur mon serveur qui jette cette erreur.

Répondre

0

Vous devez installer .NET 2.0 SP2, cette méthode a été ajouté pour indiquer aux programmes si le programme est exécuté en mode pipeline intégré (IIS 7.0+) ou non (IIS 6.0).

Questions connexes