Activities of "maliming"

Thanks. I will check your project.

hi

WebAppWebPublicModule

hi

You can install the old CLI or add --old parameter

https://abp.io/docs/latest/cli/differences-between-old-and-new-cli

ok, Please share the publish folder of TavTechnologies.Octopus.Web

If possible, please share the code for the TavTechnologies.Octopus.Web.csproj and TavTechnologies.Octopus.WebModule.cs files.

Thanks.

hi

The dll file has no problem.

But the TavTechnologies.Octopus.Web already depends on the xxxHttpApiClientModule still say: Could not find ApiDescriptionModel for action

These xxxHttpApiClientModules contain xxx-generate-proxy.json files.

Can you share the code to reproduce the problem?

The problem does not seem related to the nuget package.

I have to check the code to understand the problem.

Thanks.

hi

Can you try this? I will fix this in Framework. Your ticket has been refunded.

context.Services.PostConfigure<MvcOptions>(mvcOptions =>
{
    mvcOptions.Filters.RemoveAll(x => x is ServiceFilterAttribute serviceFilterAttribute && serviceFilterAttribute.ServiceType == typeof(AbpNoContentActionFilter));
});

hi

You can add a DynamicLocalizationResourceContributor to GlobalContributors.

When you try to localize a key, the GetOrNull will be called. Then, you can read from the database or another store.

In the Language Management module, we use ILanguageTextRepository to get texts from the database.

hi

When i create mobile solution with abp studio. It saves wrong port and url for openiddict into the db while it seeds for mobile app. So you can not log in from mobile app since port was different.

Can you share some screenshots?

Thanks.

hi

EF Core & ABP support this case, You can begin a new uow in a controller action.

Once a new UOW started, it creates an ambient scope that is participated by all the database operations performed in the current scope and considered as a single transaction boundary. The operations are committed (on success) or rolled back (on exception) all together.

  • Initiation of transaction scope at the controller level
  • Automatic rollback of all database operations (performed across multiple DbContexts) in case of any exception during the process
  • Commit of all changes when the transaction is successful
[HttpPost]
[Route("add-input-output-types" )]
public async Task<IActionResult> CreateInputOutputType([FromBody] CreateInputOutputTypeCommand dto)
{
    using (var uow = UnitOfWorkManager.Begin(requiresNew: true, isTransactional: true))
    {
        try
        {
            // You application service call.
            await uow.CompleteAsync();
        }
        catch (Exception e)
        {
            Logger.LogException(e);
            await uow.RollbackAsync();
        }
    }
}

hi

Thanks. I will check and fix that.

Showing 2751 to 2760 of 11554 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on December 25, 2025, 06:16
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.