SORU
14 Mart 2012, ÇARŞAMBA


HTTP 404 Sayfa Web Apı Bulunamadı IIS 7.5 barındırılan

Web Apı bir uygulama var. Mükemmel VS 2010 hata ayıklama dev kullandık zaman sunucusu çalışıyor. Ama ben şimdi uygulamaya erişmek için çalışırken HTTP 404 hatası alıyorum 7.5 ve IIS görevlendirilecek.

İşte benim web sitesi.config

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <connectionStrings>
    <add name="DefaultConnection" connectionString="Data Source=.\SQLEXPRESS;Initial Catalog=aspnet-FlowGearProxy-20123141219;Integrated Security=True" providerName="System.Data.SqlClient" />
  </connectionStrings>
  <appSettings>
    <add key="webpages:Version" value="2.0.0.0" />
    <add key="webpages:Enabled" value="true" />
    <add key="PreserveLoginUrl" value="true" />
    <add key="ClientValidationEnabled" value="true" />
    <add key="UnobtrusiveJavaScriptEnabled" value="true" />
  </appSettings>
  <system.web>
    <compilation debug="true" targetFramework="4.0" />
    <authentication mode="Forms">
      <forms loginUrl="~/Account/Login" timeout="2880" />
    </authentication>
    <pages>
      <namespaces>
        <add namespace="System.Web.Helpers" />
        <add namespace="System.Web.Mvc" />
        <add namespace="System.Web.Mvc.Ajax" />
        <add namespace="System.Web.Mvc.Html" />
        <add namespace="System.Web.Routing" />
        <add namespace="System.Web.WebPages" />
      </namespaces>
    </pages>
  </system.web>
  <system.webServer>
    <validation validateIntegratedModeConfiguration="false" />
    <modules runAllManagedModulesForAllRequests="true" />
  </system.webServer>
</configuration>

CEVAP
19 NİSAN 2012, PERŞEMBE


Bu ile de mücadele ettim. Neyse ki, Steve Michelotti benim için here çalışan bir çözüm belgeledi.

Günün sonunda, tüm fiiller etkin (fiil="")* benim web ExtensionlessUrlHandler-Entegre-4.0 işleyicisi yapılandırma.

<system.webServer>
    <validation validateIntegratedModeConfiguration="false" />
    <modules runAllManagedModulesForAllRequests="true" />
        <handlers>
            <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
            <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode,runtimeVersionv4.0" />
        </handlers>
</system.webServer>

Diğerleri WebDAV etkin olan sorunları neden olduğunu belirtiyorlar. Neyse ki, bu sorunu da kaçtın, ben değil.

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • 10 Daughters, 2 Sons

    10 Daughters

    10 Mart 2009
  • jat4011

    jat4011

    16 EKİM 2010
  • Xbox

    Xbox

    1 Kasım 2005