Activities of "enisn"

3rd Party clients such as android are out of the box right now. I can't suggest the best way to use with ABP together but, I can recommend using ngrok for testing at development time.


It seems your last exception occurs at https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.Http.Client/Volo/Abp/Http/Client/ClientProxying/ClientProxyBase.cs#L36

So, it shows LazyServiceProvider is null. Most probably Autofac couldn't be configured properly.

Can you try to execute yarn command before running abp install-libs

Hi @krushnakant

Have you followed Migrations Guide properly? https://docs.abp.io/en/abp/latest/Migration-Guides/Abp-5_0#identityserver

IApiScopeRepository.GetByNameAsync method renamed as FindByNameAsync.

For the second problem, please try to execute abp install-libs command under your Project.Web folder.

Your problem might be in your Android configuration.

Try to define your domain for cleartext traffic. see this: https://stackoverflow.com/a/70927108/7200126

If your non-abp app has a reference to abp blazor app;

You can use ABP layout by default in App.razor

  • Set DefaultLayout as Volo.Abp.AspNetCore.Components.Web.LeptonTheme.Components.ApplicationLayout.MainLayout or Volo.Abp.AspNetCore.Components.Web.BasicTheme.Themes.Basic.MainLayout
<Router AppAssembly="@typeof(App).Assembly">
    <Found Context="routeData">
        <RouteView RouteData="@routeData" DefaultLayout="@typeof(Volo.Abp.AspNetCore.Components.Web.BasicTheme.Themes.Basic.MainLayout)" />
        <FocusOnNavigate RouteData="@routeData" Selector="h1" />
    </Found>
    <NotFound>
        <PageTitle>Not found</PageTitle>
        <LayoutView Layout="@typeof(Volo.Abp.AspNetCore.Components.Web.LeptonTheme.Components.ApplicationLayout.MainLayout)">
            <p role="alert">Sorry, there's nothing at this address.</p>
        </LayoutView>
    </NotFound>
</Router>

Your pages will be rendered inside ABP Layout.

  • or You can set layout per page with attribute:

    • in razor:
      @page "/"
    
      @layout Volo.Abp.AspNetCore.Components.Web.BasicTheme.Themes.Basic.MainLayout
    
    • in cs:
    [Layout(typeof(Volo.Abp.AspNetCore.Components.Web.BasicTheme.Themes.Basic.MainLayout))]
    public partial class Index
    {
    
    }
    

`

Hi

As CmsKit Pro Documentation says, you have to do it in GlobalFeatureConfigurator class in your Domain.Shared project. If not, please do it in PreConfigureServices method.

Thank you for your feedback. We'll work on this topic. You can track it from issue #11599

As I see, Your HttpApi returns status code 439.

439 is not a commonly used known status code. Can you look the response body if it contains any description or message?

It might be related to your hosting provider.

There might be a problem with that module, As I see @liangshiwei is checking it.

As an answer of this issue; You can inherit from a module class hat you want to override and add that newly created class in [DependsOn] attribute.

**This is not a recommended way, it's just a way for completely overriding.

public class YourCustomModule : AbpBackgroundWorkersModule 
{
    public override void ConfigureServices(ServiceConfigurationContext context)
    {
        // Do your stuff here.
    }
}

And add that class in DependsOn attribute instead of AbpBackgroundWorkersModule

[DependsOn(typeof(YourCustomModule))]
public class YourAppModule
{
}

Hi @AlderCove

We have an event named Exploring ABP's new user interface

We'll show the new LeptonX theme and answer questions about it. Before that event unfortunately I can't say anything clear.

Showing 331 to 340 of 489 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 08:30