November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
try
type="EPiServer.Security.MultiplexingRoleProvider, EPiServer.Framework"
rather
type="EPiServer.Security.MultiplexingRoleProvider, EPiServer"
Regards
/K
Getting this error when trying EPiServer.Framework:
Could not load type 'EPiServer.Security.MultiplexingRoleProvider' from assembly 'EPiServer.Framework'.
What version are you using, looks like you are missing EPiServer.Framework reference as well as the configuration section for episerver.framework
You need these sections
<section name="episerver.framework" type="EPiServer.Framework.Configuration.EPiServerFrameworkSection, EPiServer.Framework" /> <section name="episerver" type="EPiServer.Configuration.EPiServerSection, EPiServer.Configuration" /> <section name="episerver.shell" type="EPiServer.Shell.Configuration.EPiServerShellSection, EPiServer.Shell" />
and this as well
<episerver.framework> <scanAssembly forceBinFolderScan="true" /> <appData basePath="appData" /> </episerver.framework> <episerver> <applicationSettings enableModelSyncCommit="false" uiUrl="~/UI/" enableScheduler="false" /> </episerver> <episerver.shell> <publicModules rootPath="~/modules/" /> <protectedModules rootPath="~/EPiServer/"> <add name="Shell" /><add name="CMS" /></protectedModules> </episerver.shell> <location path="Modules/_Protected"> <system.webServer> <validation validateIntegratedModeConfiguration="false" /> <handlers> <clear /> <add name="BlockDirectAccessToProtectedModules" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler" /> </handlers> </system.webServer> </location>
I'm using EPiServer v6.1.379.0 and Commerce Manager v5.2.628. I added the sections you posted, but I'm still getting the same error: [ClassFactoryException: ClassFactory not initialized]
Hi.
I'm trying to allow AD authentication in Commerce Manager and I'm running into a very strange issue. I'm using Commerce Manager v5.2.628. I've succeded implementing it in CMS and I've already implemented the code from the following articles:
http://world.episerver.com/Blogs/Dan-McKeaney/Dates/2012/8/Active-Directory-Membership-Provider-for-EPiCommerce/
https://thecommerceguy.wordpress.com/2014/09/01/syncing-active-directory-groups-for-use-in-episerver-commerce/
And I'm getting this strange exception when loading the Commerce Manager:
I'm pretty sure it's a config issue, but I can't seem to track it down, no matter what. So a little help would pe really appreciated. Let me know if you need any additional info.
Thanks.
Below is my Web.config file (I've removed my AD user and pass)