Base solution for your next web application

Activities of "chehrhard"

a precision : the module is not compiled. i can't see it as ...chunk.js .

is this related with some lazy loading stuff ? how can i force this module to be generated ?

I simply not unterstand how to do.

Wich settings files to modify ? where to change the main URL ?
any code to add somewhere ? Url redirection ? and so on ...

What i'm looking for is a detailled procedure how to archieve my goals ( deploy Host and Client on different servers under virtual directories) .

I tried everuthing i found on your forum in relation with IIs deploy. I found several infos like removing the home controller, copiing the files under the host's wwwroot and so on. but nothing to hosts each app on his own server.

No luck ... same error.

is there any setting to change after moving Entity6 to EntityCore ? Are the connection string the same ? Si the sql client the same ?

hi, the wildcards are only here for hidding the real address. The real code has the right address and the connection works with the .host project (with the same string).

I use v3.0 .

ok thanks for the answer. I hang on .. any idea of a timing ?

is there a workaround in the meantime ?

Here you have

à Castle.Windsor.MsDependencyInjection.WindsorRegistrationHelper.RegisterServiceDescriptor(IWindsorContainer container, ServiceDescriptor serviceDescriptor) à Castle.Windsor.MsDependencyInjection.WindsorRegistrationHelper.CreateServiceProvider(IWindsorContainer container, IServiceCollection services) à K2.Stratos.Wpf.Logic.ProtoModule.Initialize() dans C:\EhciDev\K2\Stratos\test\K2.Stratos.Wpf\Logic\ProtoModule.cs:ligne 39 à Abp.Modules.AbpModuleManager.<>c.<StartModules>b__15_1(AbpModuleInfo module) à System.Collections.Generic.List1.ForEach(Action1 action) à Abp.Modules.AbpModuleManager.StartModules() à Abp.AbpBootstrapper.Initialize()

I tried but have an error :

Méthode introuvable : 'Castle.MicroKernel.Registration.ComponentRegistration1<!0> Castle.MicroKernel.Registration.ComponentRegistration1.UsingFactoryMethod(System.Converter`2<Castle.MicroKernel.IKernel,!!0>, Boolean)'.

here's where i put the code ( i tried before and after then IoCManager.RegisterAsse....... line.

[DependsOn(
        typeof(StratosEntityFrameworkCoreModule),
        typeof(StratosApplicationModule),
        typeof(SellsyModule),
        typeof(FreshServiceModule),
        typeof(StratosApplicationModule),
        typeof(StratosCoreModule))]
    public class ProtoModule : K2Module
    {
        public override void PreInitialize()
        {
            //Configuration.DefaultNameOrConnectionString = "Default";
            IocManager.Register&lt;IAbpSession, ProtoClaimSession&gt;();
            IocManager.Register&lt;IStratosServer, StratosWebServer&gt;();
          
        }

        public override void Initialize()
        {
            IocManager.RegisterAssemblyByConvention(Assembly.GetExecutingAssembly());

            var services = new ServiceCollection();
            IdentityRegistrar.Register(services);
            WindsorRegistrationHelper.CreateServiceProvider(IocManager.IocContainer, services);
        }
    }

Yes i did it like this ... I re-checked all but no luck ...

[DependsOn(
        typeof(StratosEntityFrameworkCoreModule),
        typeof(StratosApplicationModule),
        typeof(SellsyModule),
        typeof(FreshServiceModule),
        typeof(StratosApplicationModule),
        typeof(StratosCoreModule))]
    public class ProtoModule : K2Module
    {
        public override void PreInitialize()
        {
            //Configuration.DefaultNameOrConnectionString = "Default";
            IocManager.Register<IAbpSession, ProtoClaimSession>();
            IocManager.Register<IStratosServer, StratosWebServer>();
          
        }

        public override void Initialize()
        {
            IocManager.RegisterAssemblyByConvention(Assembly.GetExecutingAssembly());
        }
    }
Showing 1 to 10 of 11 entries