Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Hi!
First, have you registered your implementation, so it's in use?
[InitializableModule]
public class CurrentMarketModule : IConfigurableModule
{
public void ConfigureContainer(ServiceConfigurationContext context)
{
context.Container.Configure(ce =>
{
ce.For().Singleton().Use();
});
}
}
And how does your implementation look like? GetCurrentMarket() and SetCurrentMarket(MarketId marketId) more specifically?
Hi Johan,
My implementation looks like:
///
No, i do not do any registering for my Market Storage. Thanks.
Hi,
I try to do this set this on my configuration class InitializationModule (inherits IConfigurableModule) but it seems that crashes my application with the error the getter of the current market : "The settings property 'MarketId' was not found."
I'm doing this as in the Alloy demo site project and also following the directions from: http://kkhan-episerver.blogspot.ro/2013/12/working-with-markets-in-episerver.html
The method looks looks like:
///
Probably I am missing something around here.
Thanks,
Liviu
If you are getting the "The settings property 'MarketId' was not found." error, then you need to update your web.config with the relevant information in the profile:
...
I am working on Episerver Commerce 7.9.0.126 based project.
I am trying to set inside another market than default market. Am am using the ultility service interface service ICurrentMarket to get or set the current market object. Am am doing that like in the control MarketSelector of the Allooy demo website where everything is working fine.
On out project, the Default Market cannot be changed with another one any abordation I tried. The other markets are created in the Commerce and they can be retrieved in the code, but they cannot override the default.
What am I missing?
I am using the code below to set the market:
///
/// Set the current market.
///
public static void SetCurrentMarketToCatering()
{
IMarket cateringMarket = AllMarketsGetter.FirstOrDefault(m => m.MarketName == CateringMarketName);
if (cateringMarket != null)();
{
ICurrentMarket cMarket = ServiceLocator.Current.GetInstance
if (cMarket.GetCurrentMarket().MarketId != cateringMarket.MarketId)
{
cMarket.SetCurrentMarket(cateringMarket.MarketId);
}
}
}
where cateringMarket instance is not null. After asignement, the instance cMarket remains Default even though the cateringMarket.MarketId is provided.
Please ask me for any additional information needed.
Thanks a lot in advance !