Heim  >  Artikel  >  Backend-Entwicklung  >  Eine Ausnahme tritt auf, wenn C# IIS ausführt, um einen Anwendungspool zu erstellen: Lösung für ungültigen Index

Eine Ausnahme tritt auf, wenn C# IIS ausführt, um einen Anwendungspool zu erstellen: Lösung für ungültigen Index

黄舟
黄舟Original
2017-03-14 13:56:062057Durchsuche

C#Ausnahme beim Betrieb von IIS zum Erstellen eines Anwendungspools: UngültigIndexLösung

Zugehöriger Code:

public static string CreateAppPool(string appPoolName, string frameworkVersion, string managedPipelineMode)
         {
             DirectoryEntry rootfolder = new DirectoryEntry("IIS://localhost/W3SVC/APPPOOLS");

             try
             {
                 DirectoryEntry appPool = rootfolder.Children.Add(appPoolName, "IIsApplicationPool");
                 if (appPool.Properties.Contains("AppPoolCommand"))
                 {
                     appPool.Properties["AppPoolCommand"][0] = "1";
                 }
                 if (appPool.Properties.Contains("ManagedRuntimeVersion"))
                 {
                     appPool.Properties["ManagedRuntimeVersion"][0] = "v4.0";
                 }
                 //以下代码在WindowsServer2008版本为6.0的系统上会出现异常:
                 //无效索引(Exception from HRESULT:0x80070585)
                 //if (appPool.Properties.Contains("AppPoolIdentityType"))
                 //{
                 //    appPool.Properties["AppPoolIdentityType"][0] = "4";
                 //}
                 if (appPool.Properties.Contains("Enable32BitAppOnWin64"))
                 {
                     appPool.Properties["Enable32BitAppOnWin64"][0] = true;
                 }
                 appPool.CommitChanges();
                 return null;
             }
             catch (System.Exception ex)
             {
                 LogToFile.Save(ex, "CreateAppPool");
                 return ex.Message;
             }
         }


Nach dem Kommentieren des relevanten Codes gibt es keine Auswirkungen auf die Webanwendung.

Das obige ist der detaillierte Inhalt vonEine Ausnahme tritt auf, wenn C# IIS ausführt, um einen Anwendungspool zu erstellen: Lösung für ungültigen Index. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn