Atividades de "chris.li"

It works, thanks for quick response! Actually, Dependency / ExposeServices cannot replace the AzureBlobProvider, but a customized BlobContainerConfigurationExtensions works well.

Project 1: BackgroundService has a Job named RequisitionGeneratingJob :

public class RequisitionGeneratingJob : AsyncBackgroundJob<RequisitionGeneratingArgs>, ITransientDependency
{
    private readonly IRequisitionAppService _requisitionAppService;

    public RequisitionGeneratingJob(IRequisitionAppService requisitionAppService)
    {
        _requisitionAppService = requisitionAppService;
    }

    public override async Task ExecuteAsync(RequisitionGeneratingArgs args)
    {
        await _requisitionAppService.GenerateAsync(new GenerateRequisitionInput()
        {
            TenantId = args.TenantId,
            Months = 4,
            NextMonday = args.NextMonday
        });
    }
}

Project 2: Order Service has a service named RequisitionAppService

It will got the error when calling _requisitionAppService.GenerateAsync if the remove service call over than 90 seconds.

Hi,

We will fix the problem today.

any updates?

Same to me.

Exactly what I am looking for, many thanks! Can you guide me how to sign in as another user by using the Angular client? How can I find the Angular code for this feature? thanks.

Mostrando 1 até 5 de 5 registros
Made with ❤️ on ABP v8.2.0-preview Updated on março 25, 2024, 15:11