November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
1) Are you referring to case when AddOn receives different instance of IoC container? Haven't tested myself.
2) If you take a look at EPiServer.Framework.FrameworkInitialization.InitializeBlobProviders() FileBlobProvider should be registered if no default provider has been specified in configuration. If you however in 1) receive real and the only IoC container - you should be able to switch default blog factory.
But anyway - question is: do you want to swap out default provider or you want to add your provider to the list of providers?
Then you should be good by removing current provider and adding new one: (writting without even compiling it :)
var factory = ServiceLocator.Current.GetInstance<BlobFactory>(); factory.UnregisterProvider("default"); factory.RegisterProvider({you provider here});
Hi i am creating a add-on and i want to register a new Blob Provider, but i have several problems
1) i cannot use the BlobFactory beacause it in not loading in the Container
2) i cannot register a new BlobProvider creating a new BlobFactory and adding to the container because it is using the default Blob Provider.
There are some samples how to create a new Blob Provider into a Add-On.
Regards