November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
Views: | 12666 |
Number of votes: | 2 |
Average rating: |
One month back we announced that EPiServer CMS 6 supports running on the ASP.NET 4 platform. Read more about that as well as some of the advantages with ASP.NET 4 in Allan Thræn’s article.
Today we are announcing that the following products also support ASP.NET 4.0:
To run each of these products on ASP.NET 4 you need to make the following configuration changes:
Make the following changes for EPiServer Community 4 in Web.config:
<sectionGroup name="system.web.extensions">... </sectionGroup>
<handlers>
<clear/>
…
<add name="svc-Integrated" path="*.svc" verb="*" type="System.ServiceModel.Activation.HttpHandler, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" resourceType="Unspecified" preCondition="integratedMode"/>
…
</handlers>
<add name="ServiceModel-4.0" path="*.svc" verb="*" type="System.ServiceModel.Activation.HttpHandler, System.ServiceModel.Activation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" preCondition="managedHandler,runtimeVersionv4.0" />
Make the following changes for EPiServer Composer 4 in Web.config:
<system.webServer>
<handles>
<add name="ScriptResourceHandler" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" preCondition="integratedMode"/>
</handles>
</system.webServer>
<system.web>
<httpRuntime requestValidationMode="2.0"/>
<pages validateRequest="false" />
</system.web>
Make the following changes for EPiServer Mail 5 in Web.config:
<sectionGroup name="system.web.extensions">... </sectionGroup>
<asp:CustomValidator ClientValidationFunction="RadEditorNamespace.SaveAllEditors()//" runat="server" />
</asp:Panel>
<ComponentArt:MultiPage id="multiPageTabs" runat="server" CssClass="multiPage" Width="99%" ClientIDMode="AutoID">
The following topics require member login:
More about EPiServer Community 4
More about EPiServer Composer 4
Is the IndexingService code correct?
Thank you Steve for your feedback! I’ve checked up this part with Peter Sunna, and published a correction a minute ago.
Nice work!
Just to be extra clear regarding running Composer in .net 4.0
The enableEventValidation="false" goes under the :
The post above did not precise exactly where and there are several places that matches.