Activities of "liangshiwei"

Hi,

The point is ID property, you need to change the API parameter name

Hi,

Thanks for the demo, I will check it.

Hi,

The middleware is just an example, you need to change the code according to your needs.

For your case, you need to replace the AbpClaimTypes.Role claim.

Hi,

I will check it , thanks.

Hi,

I have to try testing with a new startup template, but can't reproduce the problem, can you provide full steps? thanks.

Hi,

1 - How we can implement a hangfire server in an isolated Abp app and run this app on multiple instances?

Hangfire natively supports multi-instance servers, you only need to deploy multiple application instances.

2- How it can handle and access the tenant databases?

Example:

var tenants = await _tenantRepository.GetListAsync();

foreach(var tenant in tenants)
{
   using(CurrentTenant.Change(tenant.Id))
   {
       //handle and access the tenant databases...
   }
} 

Hi,

1/ dntcaptcha not working on the existing Abp Project

Can you share the error logs?

2/ Unable to find package Volo.Abp.EntityFrameworkCore.Oracle with version (>=5.0.0)

See https://github.com/abpframework/abp/issues/10957, we will publish the Nuget Package soon.

Hi,

Can you try using IRemoteStreamContent.

public void Save(IList<IRemoteStreamContent> uploadFiles)
{
   .....
}

Hi,

We plan to introduce dynamic claims to solve the problem, see https://github.com/abpframework/abp/pull/8676

For now, you can refer this: https://support.abp.io/QA/Questions/2090/How-to-clear-cache-for-features

Hi,

Please double-check the URL in the source project environment and make sure your application is up and running.

See https://docs.abp.io/en/abp/3.1/CLI#generate-proxy

Generates Angular service proxies for your HTTP APIs to make easy to consume your services from the client side. Your host (server) application must be up and running before running this command.

Showing 4721 to 4730 of 6038 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 19, 2024, 12:56