Activities of "liangshiwei"

Hi,

I can't reproduce the problem.

Hi,

We have fixed it: https://github.com/abpframework/abp/pull/17344

You can change the 2.4.0-preview20230810 to 2.3.- manually as a temporary solution

Hi:

https://support.abp.io/QA/Questions/5588/Cannot-download-and-add-to-solution-LeptonX#answer-3a0d0fce-2cf0-f8c8-ebd0-bb75ec3ee211

Since our project does not use "AbpEventBusRabbitMqModule" but does it being used in any abp feature causing it to break the any feature?

Distributed Event bus system allows to publish and subscribe to events that can be transferred across application/service boundaries. You can use the distributed event bus to asynchronously send and receive messages between microservices or applications.

https://docs.abp.io/en/abp/latest/Distributed-Event-Bus

If you don't need to post messages between applications, then you can delete it.

Right now checking the IdentityUser Custom field value to allow login and then changing it's value, and then at the logout from blazor and account side changing it's value. So Do I need to make any more changes to implement this one device login feature? How to change the value of the custom field when token is invalidated? If I want to restrict user to login from one browser in single device, if they change the device then they can login. How to implement this feature?

I don't understand why you want to change the value after logging out.

You can verify the access_token in the Blazor application and log out example: https://github.com/abpframework/abp/blob/6eb1d1a809e6bc840348a783e4f24c5721345920/framework/src/Volo.Abp.AspNetCore.Components.Server/Microsoft/AspNetCore/Authentication/Cookies/CookieAuthenticationOptionsExtensions.cs#L19 https://github.com/abpframework/abp/blob/6eb1d1a809e6bc840348a783e4f24c5721345920/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/MyProjectNameBlazorModule.cs#L167

Hi,

You can try adding the EventNameAttribute, for example:

[Serializable]
[EventName("payment.term.updated")]
public class PaymentTerm_UpdatedEto
{
    public PaymentTerm_UpdatedEto() { }

    public PaymentTerm_UpdatedEto(
        Guid paymentTermId,
        PaymentTermEto oldPaymentTerm,
        PaymentTermEto newPaymentTerm)
    {
        Check.NotDefaultOrNull(paymentTermId, nameof(paymentTermId));
        Check.NotNull(oldPaymentTerm, nameof(oldPaymentTerm));
        Check.NotNull(newPaymentTerm, nameof(newPaymentTerm));

        PaymentTermId = paymentTermId;
        OldPaymentTerm = oldPaymentTerm;
        NewPaymentTerm = newPaymentTerm;
    }


    public Guid PaymentTermId { get; set; }

    public PaymentTermEto OldPaymentTerm { get; set; }

    public PaymentTermEto NewPaymentTerm { get; set; }
}
Answer

Hi,

We will check it.

Hi,

You can check this: https://support.abp.io/QA/Questions/4895/Not-able-to-install-abp-suite

Hi,

ABP uses version JQuery 3.7.0, which is the latest version.

https://github.com/jquery/jquery/releases

Hi,

You can check the document: https://docs.abp.io/en/abp/latest/Deployment/Configuring-OpenIddict

Showing 3501 to 3510 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