Activities of "liangshiwei"

You need to install the Volo.Abp.Application.Services package, this is the only way.

You can get access_token from local storage

Hi,

Currently, ABP only provide MVC UI for public site. You can create an angular template and remove the modules you don't need, make it a public website

Please make sure the RabbitMQ Server is available.

Hi,

We will check it

Hi,

We will check it

Hi,

We will fix it in the next patch version. your ticket was refunded.

This is a temporary solution:

[ExposeServices(typeof(ChangePasswordModel))]
public class MyChangePasswordModel : ChangePasswordModel
{
    public async override Task<IActionResult> OnPostAsync()
    {
        if (CurrentPassword == NewPassword) 
        {
            Alerts.Warning(L["NewPasswordSameAsOld"]);
            return Page();
        }

        return await base.OnPostAsync();
    }
}

Hi,

We will check it

Hi,

You can refer to this project: https://github.com/abpframework/abp/blob/dev/framework/test/Volo.Abp.AspNetCore.Mvc.Tests/Volo/Abp/AspNetCore/Mvc/ApiExploring/AbpApiDefinitionController_Tests.cs

Do we violate the rules in terms of DDD by giving the X.HttpApi.Client reference to Y.Domain or is it a basically dependency issue that we should think about?

This violates the rules, generating a static proxy is the recommended way

Showing 3511 to 3520 of 6692 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.0.0-preview. Updated on September 16, 2025, 10:35