Open Closed

Problem using httpclient module in avalonia ios or xamarin forms ios projects #6476


User avatar
0
cangunaydin created
  • ABP Framework version: v8.0.0
  • UI Type: Angular
  • Database System: EF Core (PostgreSQL)
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes

Hello, The question is related with Abp Client Proxies. I have a web server which uses abp and abp endpoints. Now i want to share the httpclient module of the web server and use it in avalonia ui project. I created an abp module and do necessary configurations for avalonia project. Added HttpClient project reference. Now when i run the project on android environment it works fine. But when i run it on ios, it throws an exception "platform not supported exception". here is the full exception

 System.PlatformNotSupportedException: Dynamic code generation is not supported on this platform.
   at System.Reflection.Emit.AssemblyBuilder.ThrowDynamicCodeNotSupported()
   at System.Reflection.Emit.AssemblyBuilder.EnsureDynamicCodeSupported()
   at System.Reflection.Emit.RuntimeAssemblyBuilder..ctor(AssemblyName n, AssemblyBuilderAccess access)
   at System.Reflection.Emit.AssemblyBuilder.DefineDynamicAssembly(AssemblyName name, AssemblyBuilderAccess access)
   at Castle.DynamicProxy.ModuleScope.CreateModule(Boolean signStrongName)
   at Castle.DynamicProxy.ModuleScope.ObtainDynamicModuleWithWeakName()
   at Castle.DynamicProxy.ModuleScope.ObtainDynamicModule(Boolean isStrongNamed)
   at Castle.DynamicProxy.ModuleScope.DefineType(Boolean inSignedModulePreferably, String name, TypeAttributes flags)
   at Castle.DynamicProxy.Generators.Emitters.ClassEmitter.CreateTypeBuilder(ModuleScope moduleScope, String name, Type baseType, IEnumerable`1 interfaces, TypeAttributes flags, Boolean forceUnsigned)
   at Castle.DynamicProxy.Generators.Emitters.ClassEmitter..ctor(ModuleScope moduleScope, String name, Type baseType, IEnumerable`1 interfaces, TypeAttributes flags, Boolean forceUnsigned)
   at Castle.DynamicProxy.Generators.Emitters.ClassEmitter..ctor(ModuleScope moduleScope, String name, Type baseType, IEnumerable`1 interfaces)
   at Castle.DynamicProxy.Generators.BaseProxyGenerator.BuildClassEmitter(String typeName, Type parentType, IEnumerable`1 interfaces)
   at Castle.DynamicProxy.Generators.BaseInterfaceProxyGenerator.Init(String typeName, ClassEmitter& emitter, Type proxyTargetType, FieldReference& interceptorsField, IEnumerable`1 allInterfaces)
   at Castle.DynamicProxy.Generators.BaseInterfaceProxyGenerator.GenerateType(String typeName, INamingScope namingScope)
   at Castle.DynamicProxy.Generators.BaseProxyGenerator.<>c__DisplayClass13_0.<GetProxyType>b__0(CacheKey cacheKey)
   at Castle.Core.Internal.SynchronizedDictionary`2[[Castle.DynamicProxy.Generators.CacheKey, Castle.Core, Version=5.0.0.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc],[System.Type, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].GetOrAdd(CacheKey key, Func`2 valueFactory)
   at Castle.DynamicProxy.Generators.BaseProxyGenerator.GetProxyType()
   at Castle.DynamicProxy.DefaultProxyBuilder.CreateInterfaceProxyTypeWithoutTarget(Type interfaceToProxy, Type[] additionalInterfacesToProxy, ProxyGenerationOptions options)
   at Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyTypeWithoutTarget(Type interfaceToProxy, Type[] additionalInterfacesToProxy, ProxyGenerationOptions options)
   at Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget(Type interfaceToProxy, Type[] additionalInterfacesToProxy, ProxyGenerationOptions options, IInterceptor[] interceptors)
   at Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget(Type interfaceToProxy, IInterceptor[] interceptors)
   at Microsoft.Extensions.DependencyInjection.ServiceCollectionHttpClientProxyExtensions.<>c__DisplayClass4_0.<AddHttpClientProxy>b__1(IServiceProvider serviceProvider)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitFactory(FactoryCallSite factoryCallSite, RuntimeResolverContext context)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2[[Microsoft.Extensions.DependencyInjection.ServiceLookup.RuntimeResolverContext, Microsoft.Extensions.DependencyInjection, Version=8.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60],[System.Object, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].VisitCallSiteMain(ServiceCallSite callSite, RuntimeResolverContext argument)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitDisposeCache(ServiceCallSite transientCallSite, RuntimeResolverContext context)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2[[Microsoft.Extensions.DependencyInjection.ServiceLookup.RuntimeResolverContext, Microsoft.Extensions.DependencyInjection, Version=8.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60],[System.Object, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].VisitCallSite(ServiceCallSite callSite, RuntimeResolverContext argument)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.RuntimeServiceProviderEngine.<>c__DisplayClass4_0.<RealizeService>b__0(ServiceProviderEngineScope scope)
   at Microsoft.Extensions.DependencyInjection.ServiceProvider.GetService(ServiceIdentifier serviceIdentifier, ServiceProviderEngineScope serviceProviderEngineScope)
   at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType)
   at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType)
   at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[IScreenAppService](IServiceProvider provider)
   at Microsoft.Extensions.DependencyInjection.ServiceCollectionCommonExtensions.GetRequiredService[IScreenAppService](IServiceCollection services)
   at Adzup.Player.AbpBootstrapper.GetRequiredService[IScreenAppService]()
   at Adzup.Player.ViewModels.ConfigurationViewModel..ctor() in /Users/cangunaydin/projects/Adzup.Player/Adzup.Player/Adzup.Player/ViewModels/ConfigurationViewModel.cs:line 36

so the reason is obvious from the stacktrace. According to microsoft docs for ios, it says:

Since the iOS kernel prevents an application from generating code dynamically, Xamarin.iOS does not support any form of dynamic code generation. These include:

The System.Reflection.Emit is not available.
No support for System.Runtime.Remoting.
No support for creating types dynamically (no Type.GetType ("MyType`1")), although looking up existing types (Type.GetType ("System.String") for example, works just fine).
Reverse callbacks must be registered with the runtime at compile time.

I also find a previous post related with this https://support.abp.io/QA/Questions/2752/SystemPlatformNotSupportedException-when-running-Xamarin-Forms-on-iOS-using-ABP-Module-with-Autofac

so the question is, is it possible to make this work so i can use the httpclient module for my avalonia ios project? And I wonder how does this work for Maui App if it does not support System.Reflection.Emit. It seems like Castle.DynamicProxy class calls System.Reflection.Emit. Is Maui project bypassing this by replacing the service with sth else?


14 Answer(s)
  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    The Dynamic-CSharp-API-Clients proxy required the Castle.DynamicProxy

    You can consider to use Static-CSharp-API-Clients

  • User Avatar
    0
    cangunaydin created

    Hello i changed the client module to static api but i am getting the same error. And the exception is the same. Do i do sth wrong over here? Is there any specific config that i need to do? To state the app that i use static proxies? Here is an overview of what i have done.

    you can see the folder structure here for static proxies.

    here is the client module code.

    using Doohlink.CampaignManagement;
    using Doohlink.ClientManagement;
    using Doohlink.CreativeManagement;
    using Doohlink.FtpServerManagement;
    using Doohlink.InventoryManagement;
    using Doohlink.OccupancyManagement;
    using Microsoft.Extensions.DependencyInjection;
    using Volo.Abp.Account;
    using Volo.Abp.AuditLogging;
    using Volo.Abp.FeatureManagement;
    using Volo.Abp.Gdpr;
    using Volo.Abp.Identity;
    using Volo.Abp.LanguageManagement;
    using Volo.Abp.Modularity;
    using Volo.Abp.OpenIddict;
    using Volo.Abp.PermissionManagement;
    using Volo.Abp.SettingManagement;
    using Volo.Abp.TextTemplateManagement;
    using Volo.Abp.VirtualFileSystem;
    using Volo.Saas.Host;
    using Doohlink.MagicInfo;
    using Volo.Payment;
    using Volo.Payment.Admin;
    using Doohlink.AdzupPlayerManagement;
    
    namespace Doohlink;
    
    [DependsOn(
        typeof(DoohlinkApplicationContractsModule),
        typeof(AbpIdentityHttpApiClientModule),
        typeof(AbpPermissionManagementHttpApiClientModule),
        typeof(AbpFeatureManagementHttpApiClientModule),
        typeof(AbpSettingManagementHttpApiClientModule),
        typeof(SaasHostHttpApiClientModule),
        typeof(AbpAuditLoggingHttpApiClientModule),
        typeof(AbpOpenIddictProHttpApiClientModule),
        typeof(AbpAccountAdminHttpApiClientModule),
        typeof(AbpAccountPublicHttpApiClientModule),
        typeof(LanguageManagementHttpApiClientModule),
        typeof(AbpGdprHttpApiClientModule),
        typeof(TextTemplateManagementHttpApiClientModule)
    )]
    [DependsOn(typeof(CreativeManagementHttpApiClientModule))]
        [DependsOn(typeof(CampaignManagementHttpApiClientModule))]
        [DependsOn(typeof(InventoryManagementHttpApiClientModule))]
        [DependsOn(typeof(ClientManagementHttpApiClientModule))]
        [DependsOn(typeof(OccupancyManagementHttpApiClientModule))]
        [DependsOn(typeof(FtpServerManagementHttpApiClientModule))]
        [DependsOn(typeof(MagicInfoHttpApiClientModule))]
        [DependsOn(typeof(AbpPaymentHttpApiClientModule))]
        [DependsOn(typeof(AbpPaymentAdminHttpApiClientModule))]
        [DependsOn(typeof(AdzupPlayerManagementHttpApiClientModule))]
        public class DoohlinkHttpApiClientModule : AbpModule
    {
        public const string RemoteServiceName = "Default";
    
        public override void ConfigureServices(ServiceConfigurationContext context)
        {
            context.Services.AddStaticHttpClientProxies(
                typeof(DoohlinkApplicationContractsModule).Assembly,
                RemoteServiceName
            );
    
            Configure<AbpVirtualFileSystemOptions>(options =>
            {
                options.FileSets.AddEmbedded<DoohlinkHttpApiClientModule>();
            });
        }
    }
    

    and here how it is implemented on avalonia ui.

    using Adzup.Player.Services;
    using Adzup.Player.Utils;
    using Doohlink;
    using Microsoft.Extensions.DependencyInjection;
    using Volo.Abp.Http.Client;
    using Volo.Abp.Modularity;
    
    namespace Adzup.Player;
    
    [DependsOn(
        typeof(AdzupPlayerUtilsModule),
        typeof(DoohlinkHttpApiClientModule))]
    public class AdzupPlayerModule:AbpModule
    {
        public override void PreConfigureServices(ServiceConfigurationContext context)
        {
    #if DEBUG
            
            PreConfigure<AbpHttpClientBuilderOptions>(options =>
            {
                options.ProxyClientBuildActions.Add((_, clientBuilder) =>
                {
                    clientBuilder.ConfigurePrimaryHttpMessageHandler(HttpClientHelper.GetInsecureHandler);
                });
            });
    #endif
        }
        public override void ConfigureServices(ServiceConfigurationContext context)
        {
            var configuration=context.Services.GetConfiguration();
            Configure<PlayerOptions>(configuration.GetSection(PlayerOptions.Player));
        }
    }
    

    and here how abp is initialized for avalonia.

    using System.IO;
    using System.Reflection;
    using Microsoft.Extensions.Configuration;
    using Microsoft.Extensions.DependencyInjection;
    using Microsoft.Extensions.FileProviders;
    using Serilog;
    using Serilog.Events;
    using Volo.Abp;
    using Volo.Abp.Modularity;
    
    namespace Adzup.Player;
    
    public static class AbpBootstrapper
    {
        public static IAbpApplicationWithInternalServiceProvider? AbpApplication { get; private set; }
        public static bool IsInitialized => AbpApplication != null;
    
        public static void InitializeIfNeeds<T>()
            where T : AbpModule
        {
            if (IsInitialized)
            {
                return;
            }
    
            AbpApplication = CreateAbpApplication<T>().ConfigureInstallationId();
            AbpApplication?.Initialize();
        }
    
        private static IAbpApplicationWithInternalServiceProvider? CreateAbpApplication<T>() where T : AbpModule
        {
            Log.Logger = new LoggerConfiguration()
                .MinimumLevel.Information()
                .MinimumLevel.Override("Microsoft", LogEventLevel.Warning)
                .MinimumLevel.Override("Volo.Abp", LogEventLevel.Warning)
    #if DEBUG
                .MinimumLevel.Override("AbpWithAvalonia", LogEventLevel.Debug)
    #else
                    .MinimumLevel.Override("AbpWithAvalonia", LogEventLevel.Information)
    #endif
                .Enrich.FromLogContext()
                .WriteTo.Console()
                .CreateLogger();
    
            var assembly = typeof(App).GetTypeInfo().Assembly;
            var configuration = new ConfigurationBuilder()
                .SetBasePath(Directory.GetCurrentDirectory())
                .AddEnvironmentVariables()
    #if DEBUG
                .AddJsonFile(new EmbeddedFileProvider(assembly), "appsettings.debug.json", optional: true, false)
    #else
                .AddJsonFile(new EmbeddedFileProvider(assembly), "appsettings.json", optional: true, false)
    #endif
                .Build();
            var application = AbpApplicationFactory.Create<T>(options =>
            {
                options.Services.ReplaceConfiguration(configuration);
                // options.UseAutofac();
                options.Services.AddLogging(c => c.AddSerilog());
            });
    
            return application;
        }
    
        public static T? GetRequiredService<T>() where T : class
        {
            return AbpApplication?.Services.GetRequiredService<T>();
        }
    
        public static void ShutDown()
        {
            AbpApplication?.ShutdownAsync().GetAwaiter().GetResult();
            AbpApplication?.Dispose();
            AbpApplication = null;
        }
    }
    

    and i have this exception again when i try to resolve the appservice.

    System.PlatformNotSupportedException: Dynamic code generation is not supported on this platform.
       at System.Reflection.Emit.AssemblyBuilder.ThrowDynamicCodeNotSupported()
       at System.Reflection.Emit.AssemblyBuilder.EnsureDynamicCodeSupported()
       at System.Reflection.Emit.RuntimeAssemblyBuilder..ctor(AssemblyName n, AssemblyBuilderAccess access)
       at System.Reflection.Emit.AssemblyBuilder.DefineDynamicAssembly(AssemblyName name, AssemblyBuilderAccess access)
       at Castle.DynamicProxy.ModuleScope.CreateModule(Boolean signStrongName)
       at Castle.DynamicProxy.ModuleScope.ObtainDynamicModuleWithWeakName()
       at Castle.DynamicProxy.ModuleScope.ObtainDynamicModule(Boolean isStrongNamed)
       at Castle.DynamicProxy.ModuleScope.DefineType(Boolean inSignedModulePreferably, String name, TypeAttributes flags)
       at Castle.DynamicProxy.Generators.Emitters.ClassEmitter.CreateTypeBuilder(ModuleScope moduleScope, String name, Type baseType, IEnumerable`1 interfaces, TypeAttributes flags, Boolean forceUnsigned)
       at Castle.DynamicProxy.Generators.Emitters.ClassEmitter..ctor(ModuleScope moduleScope, String name, Type baseType, IEnumerable`1 interfaces, TypeAttributes flags, Boolean forceUnsigned)
       at Castle.DynamicProxy.Generators.Emitters.ClassEmitter..ctor(ModuleScope moduleScope, String name, Type baseType, IEnumerable`1 interfaces)
       at Castle.DynamicProxy.Generators.BaseProxyGenerator.BuildClassEmitter(String typeName, Type parentType, IEnumerable`1 interfaces)
       at Castle.DynamicProxy.Generators.BaseInterfaceProxyGenerator.Init(String typeName, ClassEmitter& emitter, Type proxyTargetType, FieldReference& interceptorsField, IEnumerable`1 allInterfaces)
       at Castle.DynamicProxy.Generators.BaseInterfaceProxyGenerator.GenerateType(String typeName, INamingScope namingScope)
       at Castle.DynamicProxy.Generators.BaseProxyGenerator.&lt;&gt;c__DisplayClass13_0.&lt;GetProxyType&gt;b__0(CacheKey cacheKey)
       at Castle.Core.Internal.SynchronizedDictionary`2[[Castle.DynamicProxy.Generators.CacheKey, Castle.Core, Version=5.0.0.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc],[System.Type, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].GetOrAdd(CacheKey key, Func`2 valueFactory)
       at Castle.DynamicProxy.Generators.BaseProxyGenerator.GetProxyType()
       at Castle.DynamicProxy.DefaultProxyBuilder.CreateInterfaceProxyTypeWithoutTarget(Type interfaceToProxy, Type[] additionalInterfacesToProxy, ProxyGenerationOptions options)
       at Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyTypeWithoutTarget(Type interfaceToProxy, Type[] additionalInterfacesToProxy, ProxyGenerationOptions options)
       at Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget(Type interfaceToProxy, Type[] additionalInterfacesToProxy, ProxyGenerationOptions options, IInterceptor[] interceptors)
       at Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget(Type interfaceToProxy, IInterceptor[] interceptors)
       at Microsoft.Extensions.DependencyInjection.ServiceCollectionHttpClientProxyExtensions.&lt;&gt;c__DisplayClass4_0.&lt;AddHttpClientProxy&gt;b__1(IServiceProvider serviceProvider)
       at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitFactory(FactoryCallSite factoryCallSite, RuntimeResolverContext context)
       at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2[[Microsoft.Extensions.DependencyInjection.ServiceLookup.RuntimeResolverContext, Microsoft.Extensions.DependencyInjection, Version=8.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60],[System.Object, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].VisitCallSiteMain(ServiceCallSite callSite, RuntimeResolverContext argument)
       at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitDisposeCache(ServiceCallSite transientCallSite, RuntimeResolverContext context)
       at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2[[Microsoft.Extensions.DependencyInjection.ServiceLookup.RuntimeResolverContext, Microsoft.Extensions.DependencyInjection, Version=8.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60],[System.Object, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].VisitCallSite(ServiceCallSite callSite, RuntimeResolverContext argument)
       at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope)
       at Microsoft.Extensions.DependencyInjection.ServiceLookup.RuntimeServiceProviderEngine.&lt;&gt;c__DisplayClass4_0.&lt;RealizeService&gt;b__0(ServiceProviderEngineScope scope)
       at Microsoft.Extensions.DependencyInjection.ServiceProvider.GetService(ServiceIdentifier serviceIdentifier, ServiceProviderEngineScope serviceProviderEngineScope)
       at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType)
       at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType)
       at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[IScreenAppService](IServiceProvider provider)
       at Microsoft.Extensions.DependencyInjection.ServiceCollectionCommonExtensions.GetRequiredService[IScreenAppService](IServiceCollection services)
       at Adzup.Player.AbpBootstrapper.GetRequiredService[IScreenAppService]()
       at Adzup.Player.ViewModels.ConfigurationViewModel..ctor() in /Users/cangunaydin/projects/Adzup.Player/Adzup.Player/Adzup.Player/ViewModels/ConfigurationViewModel.cs:line 36
       at System.Reflection.MethodBaseInvoker.InterpretedInvoke_Constructor(Object obj, IntPtr* args)
       at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr)
       at System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
       at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitConstructor(ConstructorCallSite constructorCallSite, RuntimeResolverContext context)
       at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2[[Microsoft.Extensions.DependencyInjection.ServiceLookup.RuntimeResolverContext, Microsoft.Extensions.DependencyInjection, Version=8.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60],[System.Object, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].VisitCallSiteMain(ServiceCallSite callSite, RuntimeResolverContext argument)
       at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitRootCache(ServiceCallSite callSite, RuntimeResolverContext context)
       at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2[[Microsoft.Extensions.DependencyInjection.ServiceLookup.RuntimeResolverContext, Microsoft.Extensions.DependencyInjection, Version=8.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60],[System.Object, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].VisitCallSite(ServiceCallSite callSite, RuntimeResolverContext argument)
       at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.Resolve(ServiceCallSite callSite, ServiceProviderEngineScope scope)
       at Microsoft.Extensions.DependencyInjection.ServiceProvider.CreateServiceAccessor(ServiceIdentifier serviceIdentifier)
       at System.Collections.Concurrent.ConcurrentDictionary`2[[Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceIdentifier, Microsoft.Extensions.DependencyInjection, Version=8.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60],[Microsoft.Extensions.DependencyInjection.ServiceProvider.ServiceAccessor, Microsoft.Extensions.DependencyInjection, Version=8.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60]].GetOrAdd(ServiceIdentifier key, Func`2 valueFactory)
       at Microsoft.Extensions.DependencyInjection.ServiceProvider.GetService(ServiceIdentifier serviceIdentifier, ServiceProviderEngineScope serviceProviderEngineScope)
       at Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope.GetService(Type serviceType)
       at Volo.Abp.DependencyInjection.ConventionalRegistrarBase.&lt;&gt;c__DisplayClass10_0.&lt;CreateServiceDescriptor&gt;b__0(IServiceProvider provider)
       at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteRuntimeResolver.VisitFactory(FactoryCallSite factoryCallSite, RuntimeResolverContext context)
       at Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteVisitor`2[[Microsoft.Extensions.DependencyInjection.ServiceLookup.RuntimeResolverContext, Microsoft.Extensions.DependencyInjection, Version=8.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60],[System.Object, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].VisitCallSiteMain(ServiceCallSite callSite, RuntimeResolverContext argument)
       at 
    

    appservice is resolve like this in view model.

    _screenAppService = AbpBootstrapper.GetRequiredService<IScreenAppService>()!;
    

    hope you can point me into the right direction. thank you.

  • User Avatar
    0
    cangunaydin created

    one more thing about the problem. My HttpApi Client module consists of multiple HttpApi Client modules. After i posted the previous message, i have tried with only one of them, then the exception go away, but this time i got another exception message. "no service for type IScreenAppService has been registered". So somehow it can not get the service from ioc container. But i can see the generated service. I couldn't understand what i am doing wrong.

  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    Can you share a simple project that reproduces your problem?

    liming.ma@volosoft.com

    I will download and check it.

  • User Avatar
    0
    cangunaydin created

    Hello, I have solved it while i am preparing a minimal project :) Sometimes it is better to create it from scratch. Here is my findings and some questions if you can answer. I can also send the sample test project if you do not understand the questions just let me know.

    So my problem was with the namespace. When i expose my services from the module i create "Controller" folder under httpapi project then set all folders under it here is a screenshot from my folder structure.

    so i was trying to inject the isampleappservice from the application service namespace instead of controller namespace. And static generation is creating the isampleappservice for the controller namespace.

    So the first question is if do not put my controller class under controller folder and namespace, it becomes ambiguous namespace for isampleappservice. Cause it is gonna be two isampleappservice comes from application.contracts and from generated folder. How can you fix that? Second question is about "With Contracts and Without Contracts" (https://docs.abp.io/en/abp/latest/API/Static-CSharp-API-Clients#client-proxy-generation) if i create my proxies without contracts first problem is solved. But i want to know downsides of it. Why isampleappservice is created at the first place with contracts? isn't the project referencing to application.contracts anyway? when you create your proxies "with contracts" then shouldn't you reference to application.contracts project? if you do not reference it, as i see it, it doesn't generate the dtos? how it is gonna be functional then?

    As you can see i am little bit confused how should it be used. I want to create a nuget package that can be shared on my private repository since different ui platforms needs to access the backend. Any advice to do that? with or without contracts?

  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    1

    Can you share a project to show the namespace problem?

    Thanks

    2

    If the client project already references to the app.contracts package, they should use the --without-contracts parameter. Otherwise, they will have conflicts for app service interfaces and DTO classes (they will be duplicated, one in the referenced app.contracts package, and one in the current project, with the same namespace and name).

    See https://github.com/abpframework/abp/issues/13613

  • User Avatar
    0
    cangunaydin created

    Hello again, the link was very useful. But i speak too soon. The problem persists still.

    The platform not supported exception gone but when i do the call, then i got an exception below from clientproxybase.

    System.AggregateException: One or more errors occurred. (Object reference not set to an instance of an object)
     ---> System.NullReferenceException: Object reference not set to an instance of an object
       at Volo.Abp.Http.Client.ClientProxying.ClientProxyBase`1[[BookStore.Category.Samples.ISampleAppService, BookStore.Category.Application.Contracts, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null]].get_ClientProxyApiDescriptionFinder()
       at Volo.Abp.Http.Client.ClientProxying.ClientProxyBase`1[[BookStore.Category.Samples.ISampleAppService, BookStore.Category.Application.Contracts, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null]].BuildHttpProxyClientProxyContext(String methodName, ClientProxyRequestTypeValue arguments)
       at Volo.Abp.Http.Client.ClientProxying.ClientProxyBase`1.&lt;RequestAsync&gt;d__33`1[[BookStore.Category.Samples.ISampleAppService, BookStore.Category.Application.Contracts, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null],[BookStore.Category.Samples.SampleDto, BookStore.Category.Application.Contracts, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null]].MoveNext()
       at BookStore.Category.Samples.SampleClientProxy.GetAsync() in /Users/cangunaydin/dev/samples/BookStore/aspnet-core/modules/BookStore.Category/src/BookStore.Category.HttpApi.Client/ClientProxies/BookStore/Category/Samples/SampleClientProxy.Generated.cs:line 22
       --- End of inner exception stack trace ---
       at UIKit.UIApplication.UIApplicationMain(Int32 argc, String[] argv, IntPtr principalClassName, IntPtr delegateClassName) in /Users/builder/azdo/_work/1/s/xamarin-macios/src/UIKit/UIApplication.cs:line 58
    

    It gets nullreference exception. probably it can not resolve ClientProxyApiDescriptionFinder. Then i realized probably this is related with autofac module, which i can not depend on since ios kernel not allowing it. (Always getting platform not supported exception) https://github.com/abpframework/abp/issues/10929

    It seems like i stucked with this. I am sending you the sample project that i use. If you have some solution, i would like to hear about it. Right now, i wrote my own http client calls with regular HttpClient object. Though it would be very helpful to use the abp client proxies.

    As a note, I use jetbrains rider on mac. When i first created avalonia project it created with target framework as .net7.0. Before i change the framework to .net8.0 I managed to make it work if i wasn't hallucinating :) probably it took .net standard2.0 dlls. But i couldn't make it work after i try to change it back to .net7.0 it was giving me runtime error afterwards. Weird behavior.

    you can check your email.

  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    I will check your project.

  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    You need to intergate the autofac.

    I tested BookStore.Avalonia.Desktop and shared the source code with you.

  • User Avatar
    0
    cangunaydin created

    Hello, yes it works for desktop and android, but the problem is in ios. As i mentioned before in my previous posts. Did you try it with ios?

  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    I don't have IOS environment.

    But you can remove Autofac. The problem is about the Properity injection.

    So set base service manually.

    using System;
using BookStore.Category.Samples;
using Volo.Abp.DependencyInjection;

namespace BookStore.Avalonia.ViewModels;

public class MainViewModel : ViewModelBase,ISingletonDependency
{
#pragma warning disable CA1822 // Mark members as static
    public string Greeting => "Welcome to Avalonia!";
#pragma warning restore CA1822 // Mark members as static

    public MainViewModel()
    {
        var sampleAppService = AbpBootstrapper.GetRequiredService<ISampleAppService>();
        sampleAppService.As<SampleClientProxy>().LazyServiceProvider = AbpBootstrapper.GetRequiredService<IAbpLazyServiceProvider>();

        var sampleDto = sampleAppService.GetAsync().Result;
    }
}

    
    

  • User Avatar
    0
    cangunaydin created

    thank you @maliming. this is what i was looking for. you are a life saviour. I have tried it and it works nicely. I am gonna close this issue, but just one last thing. Is it possible to override clientproxybase so i don't need to do the same for every service that i am injecting.

    sampleAppService.As<SampleClientProxy>().LazyServiceProvider = AbpBootstrapper.GetRequiredService<IAbpLazyServiceProvider>();

    

    I can write another static method to get the service, but mostly i use constructor injection on my projects. I didn't use it in this example cause of designer data context. any suggestion for that?

  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    . Is it possible to override clientproxybase so i don't need to do the same for every service that i am injecting.

    Not currently possible.

    You can consider:

    context.Services.Replace(ServiceDescriptor.Transient<ISampleAppService>(serviceProvider =>
    {
    	var sampleClientProxy = serviceProvider.GetRequiredService<SampleClientProxy>();
    	sampleClientProxy.LazyServiceProvider = serviceProvider.GetRequiredService<IAbpLazyServiceProvider>();
    	return sampleClientProxy;
    }));
    
  • User Avatar
    0
    cangunaydin created

    thank you. I will do that.

Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11