FineUI 官方论坛

标题: APPBOX4.1在VS2013下运行不了,“报检测到在集成的托管管道..... [打印本页]

作者: freddy    时间: 2014-11-29 23:21
标题: APPBOX4.1在VS2013下运行不了,“报检测到在集成的托管管道.....

报如下的错误,请问有哪位朋友知道怎么解决吗?

HTTP 错误 500.22 - Internal Server Error检测到在集成的托管管道模式下不适用的 ASP.NET 设置。最可能的原因:
可尝试的操作:
详细错误信息:
模块   ConfigurationValidationModule
通知   BeginRequest
处理程序   ExtensionlessUrl-Integrated-4.0
错误代码   0x80070032

请求的 URL   http://localhost:55909/
物理路径   F:\AppBox_v4.1\AppBox
登录方法   尚未确定
登录用户   尚未确定
请求跟踪目录   C:\Users\Administrator\Documents\IISExpress\TraceLogFiles\APPBOX



更多信息:集成模式是在 IIS 7.0 及更高版本上运行 ASP.NET 应用程序的首选模式。    查看更多信息 »


作者: tarcyshu    时间: 2014-12-1 12:18
改成经典的不行么?
作者: freddy    时间: 2014-12-2 11:01
tarcyshu 发表于 2014-12-1 12:18
改成经典的不行么?

我在这方面是菜鸟,不知道要怎么改,可否指教一下?
作者: sanshi    时间: 2014-12-2 12:36
freddy 发表于 2014-12-2 11:01
我在这方面是菜鸟,不知道要怎么改,可否指教一下?

看常见问题:http://fineui.com/bbs/forum.php?mod=viewthread&tid=655
作者: freddy    时间: 2014-12-18 00:00
把Web.config改了下,貌似可以了,有碰到同样问题的朋友可以把下面的内容拷过去试一下(把数据库连接改成你自己的)。


<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <section name="FineUI" type="FineUI.ConfigSection, FineUI" requirePermission="false" />
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />

  <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --></configSections>
  <appSettings />
  <connectionStrings>
    <clear />
    <add name="Default" connectionString="assword=saersist Security Info=True;User ID=sa;Initial Catalog=AppBox;Data Source=." providerName="System.Data.SqlClient" />
    <add name="MySQL" connectionString="Server=localhost;Database=appbox;Uid=rootwd=root;Charset=utf8" providerName="MySql.Data.MySqlClient" />
  </connectionStrings>
  <FineUI DebugMode="true" />
  <system.web>
    <pages controlRenderingCompatibilityVersion="4.0" clientIDMode="AutoID">
      <controls>
        <add assembly="FineUI" namespace="FineUI" tagPrefix="f" />
      </controls>
    </pages>
    <!--
    <httpModules>
      <add name="FineUIScriptModule" type="FineUI.ScriptModule, FineUI" />
    </httpModules>
    <httpHandlers>
      <add verb="GET" path="res.axd" type="FineUI.ResourceHandler, FineUI" validate="false"  />
    </httpHandlers>
    -->


    <httpRuntime />
    <compilation debug="true" targetFramework="4.0" />
    <customErrors mode="Off" />
    <authentication mode="Forms">
      <forms name=".APPBOX_FORMS_AUTH" loginUrl="~/default.aspx" timeout="120" defaultUrl="~/main.aspx" protection="All" path="/" />
    </authentication>
    <authorization>
      <deny users="?" />
    </authorization>

  </system.web>

  <system.webServer>
    <modules>
      <add name="FineUIScriptModule" type="FineUI.ScriptModule, FineUI" />
    </modules>
    <handlers>
      <add name="MyHandler" path="res.axd" verb="GET" type="FineUI.ResourceHandler, FineUI" preCondition="integratedMode" />
    </handlers>
    <validation validateIntegratedModeConfiguration="false" />
  </system.webServer>

  <location path="icon">
    <system.web>
      <authorization>
        <allow users="*" />
      </authorization>
    </system.web>
  </location>
  <location path="res">
    <system.web>
      <authorization>
        <allow users="*" />
      </authorization>
    </system.web>
  </location>
  <location path="extjs">
    <system.web>
      <authorization>
        <allow users="*" />
      </authorization>
    </system.web>
  </location>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
      <parameters>
        <parameter value="v11.0" />
      </parameters>
    </defaultConnectionFactory>
    <providers>
      <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
    </providers>
  </entityFramework>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="EntityFramework" publicKeyToken="b77a5c561934e089" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>






欢迎光临 FineUI 官方论坛 (https://fineui.com/BBS/) Powered by Discuz! X3.4