Building site with Sitefinity
An unhandled exception was generated during the execution of the current
web request. Information regarding the origin and location of the
exception can be identified using the exception stack trace below.
|
|
Hi Dhaval,
Thank you for using our services.
From the stack trace it seems that the problem comes from the new Claims authentication mode that we have introduced. Please add the following property to your Security configuration file ( the top declaration line ):
<
securityConfig
xmlns:config
=
"urn:telerik:sitefinity:configuration"
xmlns:type
=
"urn:telerik:sitefinity:configuration:type"
.... >
Having the same issue.
It's occurring after upgrading and merging the web.config settings. The settings to merge come from the posted upgrade docs.
I reviewed the security.config and the setting recommended here is already set to forms in our case.
Few other notes: We Installed the Windows Identity Foundation on our server and also have the Microsoft.IdentityModel.dll in the bin.
Jason Sobolewski
I think I found the issue:
I was using the wrong settings which were suggested in the upgrade docs. You need to keep the 4.4 settings for forms authentication. This is in the web.config under system.webserver.
<validation validateIntegratedModeConfiguration="false" />
<modules runAllManagedModulesForAllRequests="true">
<remove name="WebDAVModule" />
<remove name="UrlRoutingModule" />
<remove name="ScriptModule" />
<remove name="RadUploadModule" />
<remove name="Sitefinity" />
<remove name="SitefinityAnalyticsModule" />
<remove name="SitefinityAtompubModule" />
<add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add name="Sitefinity" type="Telerik.Sitefinity.Web.SitefinityHttpModule, Telerik.Sitefinity" />
<add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI" />
<add name="SitefinityAnalyticsModule" type="Telerik.Sitefinity.Analytics.Server.DependencyResolution.Module.DependencyRegistrarHttpModule, Telerik.Sitefinity.Analytics.Server.DependencyResolution" />
<add name="SitefinityAtompubModule" type="Telerik.Sitefinity.Security.SitefinityAtompubModule, Telerik.Sitefinity" />
</modules>