0

SharePoint 2010 サーバー上の IIS 7.0 での展開の問題。

IIS 7.0 に Asp.net Web アプリケーションを展開しようとしています。

以下のように :

http://msdn.microsoft.com/en-us/library/dd483479.aspx ここに画像の説明を入力

パッケージを作成してからデプロイする場合 エラー 2:

4

1 に答える 1

0

これは以前に見たことがあります (推測させてください - これは SP2007 で動作していましたか?)。いずれにせよ、スクリプト リソース ハンドラー セクションは既に定義されているため、削除する必要があります (正確な詳細は覚えていませんが、これは過去のことです)。.NET 2.0 用の ASP.NET Ajax 拡張機能を使用していましたが、2007 年には問題なく機能していましたが、2010 年にはこの問題が発生しました。

最終的に使用した構成ファイルのコピーを次に示します。削除されたものを確認できます。

<customErrors mode="Off" defaultRedirect="GenericErrorPage.aspx"></customErrors>


<pages>

  <controls>

  </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="false">

  <assemblies>

    <add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

  </assemblies>

</compilation>



<httpHandlers>

  <remove verb="*" path="*.asmx"/>

  <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

  <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

  <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>

</httpHandlers>



<httpModules>

  <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

</httpModules>

 <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">

     <dependentAssembly>

         <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/>

             <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/>

     </dependentAssembly>

     <dependentAssembly>

         <assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35"/>

         <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/>

     </dependentAssembly>

 </assemblyBinding>

<scripting>

  <webServices>

  </webServices>

  <!--

  <scriptResourceHandler enableCompression="true" enableCaching="true" />

  -->

</scripting>

<validation validateIntegratedModeConfiguration="false"/>

<modules>



</modules>

<handlers>

  <remove name="WebServiceHandlerFactory-Integrated" />







</handlers>

于 2012-08-01T19:58:19.943 に答える