2011-07-08 131 views
1

我正試圖獲得運行在運行IIS 7.5的Windows 2008 R2 64位服務器上的應用程序(我沒有開發)。
我收到上述錯誤 - 這裏有更多的細節 -http錯誤500.19 - 內部服務器錯誤

The requested page cannot be accessed because the related configuration data for the page is invalid 
Error Code 0x8007007e 

我知道,服務器可以訪問web.config文件,因爲如果我進行更改,錯誤代碼的變化。 我也知道它是一個正確的web.config,因爲它在具有相同文件的不同服務器上成功運行。

有沒有人有任何想法可能會造成這種情況。我收到的錯誤信息確實沒有告訴我什麼。

我已經嘗試使用FailedRequestTracing,但是我不知道如何閱讀這些日誌或沒有更多的信息。服務器上的事件日誌中也沒有錯誤。

我還有什麼地方可以更好地瞭解發生了什麼?

感謝您的任何想法....

編輯 - 這裏是web.config中。正如我前面說過的,奇怪的是它在另一臺服務器上工作。我檢查確保引用的程序集可用(根據頁面here,它似乎可能是問題)在gac中。

<?xml version="1.0" encoding="UTF-8"?> 
<configuration> 
    <appSettings> 
     <add key="ChartImageHandler" value="storage=file;timeout=20;dir=c:\temp\;deleteAfterServicing=false;" /> 
    </appSettings> 
    <connectionStrings> 
     <!-- removed for this post --> 

    </connectionStrings> 
    <system.data> 
     <DbProviderFactories> 
      <!--<add name="IBM Informix .NET Data Provider 3.0.0" invariant="IBM.Data.Informix.3.0.0" description="IBM Informix Data Provider 3.0.0 for .NET Framework 2.0" type="IBM.Data.Informix.IfxFactory, IBM.Data.Informix.3.0.0, Version=3.0.0.2, Culture=neutral, PublicKeyToken=7c307b91aa13d208"/>--> 
     </DbProviderFactories> 
    </system.data> 
    <system.web> 
     <httpRuntime maxRequestLength="8192" /> 
     <customErrors mode="Off" /> 
     <sessionState timeout="360" /> 
     <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"> 
      <namespaces> 
       <clear /> 
      </namespaces> 
      <controls> 
       <add tagPrefix="asp" namespace="System.Web.UI.DataVisualization.Charting" assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> 
      </controls> 
     </pages> 
     <!-- 
      Set compilation debug="true" to insert debugging 
      symbols into the compiled page. Because this 
      affects performance, set this value to true only 
      during development. 
    --> 
     <compilation debug="true" targetFramework="4.0"> 
      <assemblies> 
       <add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" /></assemblies></compilation> 
     <httpHandlers> 
      <add path="ChartImg.axd" verb="GET,HEAD" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false" /> 
     </httpHandlers> 
    </system.web> 
    <system.web.extensions> 
     <scripting> 
      <webServices> 
       <jsonSerialization maxJsonLength="5000000" /> 
      </webServices> 
     </scripting> 
    </system.web.extensions> 
    <system.webServer> 
     <validation validateIntegratedModeConfiguration="false" /> 
     <handlers> 
      <remove name="ChartImageHandler" /> 
      <add name="ChartImageHandler" preCondition="integratedMode" verb="GET,HEAD" path="ChartImg.axd" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> 
     </handlers> 
     <defaultDocument> 
      <files> 
       <add value="index.aspx" /> 
      </files> 
     </defaultDocument> 
     <tracing> 
      <traceFailedRequests> 
       <add path="*.aspx"> 
        <traceAreas> 
         <add provider="ASP" verbosity="Verbose" /> 
         <add provider="ASPNET" areas="Infrastructure,Module,Page,AppServices" verbosity="Verbose" /> 
         <add provider="ISAPI Extension" verbosity="Verbose" /> 
         <add provider="WWW Server" areas="Authentication,Security,Filter,StaticFile,CGI,Compression,Cache,RequestNotifications,Module,FastCGI" verbosity="Verbose" /> 
        </traceAreas> 
        <failureDefinitions timeTaken="00:00:00" statusCodes="400-600" /> 
       </add> 
      </traceFailedRequests> 
     </tracing> 
    </system.webServer> 
</configuration> 
+0

你有可能發佈有問題的web.config嗎? –

+0

嘗試安裝IIS重寫模塊,因爲我在新安裝 – stack72

+0

上已經安裝了它。 – czuroski

回答

0

我可以通過禁用服務器在具有WSUS應用的壓縮,讓過去這個錯誤。

查看詳情here

感謝大家的幫助。

0

這是一個有點cheaty,但微軟有一個專門頁面關於這個問題...和固定它無數的建議。你有沒有經歷過呢?

http://support.microsoft.com/kb/942055

+0

是的,我經歷了它。對於那個特定的錯誤,它提到一個引用的文件無法加載,但我不知道哪個文件或DLL可能是... – czuroski

相關問題