"abpdeveloper@dbizsolution.com" की गतिविधियाँ

The Architecture is configured as per the points listed below.

Step1: We have split the applications with common Identity Server. Step2: BIMS is one main application which handled users and their accesses Step3: BIMS_BDairy is another application which uses the Identity Server of BIMS

We need solution for addressing these points.

1)Tenant based login - AbpUsers, AbpUserRoles - StoreManager,Admin,HR - High level people

Step1: We will have tenants created in our main application (BIMS) Step2: We will have users created logins created against these tenants, Step3: At the Service level we need to validate this user with his credentials and allow access to the Service with the approriate tenant and user details set in the context.

This is not working now, it works only for Host login and not for Tenant Login. This needs to be addressed

2)Tenant based Token Generation for Login (API)- Mobile App

Step1: We are having a Mobile Application in which these tenant users will login using the mobile App using say EmployeeID and not his/her username or password Step2: We need to validate the user against the credentials and generate token to access the Services.

3)To Configure Roles in BIMS with BDairy Feature list.(Screen Permissions)

Step1: We have split the applications with common Identity Server. Step2: BIMS is one main application which handled users and their accesses Step3: BIMS_BDairy is another application which uses the Identity Server of BIMS Step4: How do i get the permission of BDairy in BIMS for the user to set access in the BIMS Application using the permissions tab

4)How to remove the Additional tables like AbpUsers in BIMS BDairy

Step1: We have split the applications with common Identity Server. Step2: BIMS is one main application which handled users and their accesses Step3: The same users,login,clients etc tables are created also in BDairy how to avoid this as this has to be at BIMS level and not in BDairy

5)How to do Redis Configuration

Step1:How to do Redis Configuration in Windows server for Production. Need documentations for the same.

6)HTTPS in deployment

Step1: When we deploy the AppServices BIMS and BDairy in IIS and configure https for these service, it throws as invalid uri exception. It works when we provide only Http. Step2: We have cross refernence calls like from BDairy AppService we will call a method in the BIMS AppService for fetching some data

Hi

Point 1,2 & 3 are not working. Pls need urgent help.

1)Tenant based login - AbpUsers, AbpUserRoles - StoreManager,Admin,HR - High level people

See https://docs.abp.io/en/abp/latest/Multi-Tenancy#determining-the-current-tenant You need to pass the tenant argument, like:

var tokenResponse = await client.RequestPasswordTokenAsync(new PasswordTokenRequest 
{ 
    Address = disco.TokenEndpoint + "?__tenant=....", 
    ClientId = _configuration["IdentityClients:Default:ClientId"], 
    ClientSecret = _configuration["IdentityClients:Default:ClientSecret"], 
    UserName = _configuration["IdentityClients:Default:UserName"], 
    Password = _configuration["IdentityClients:Default:UserPassword"], 
    Scope = _configuration["IdentityClients:Default:Scope"] 
}); 

2)Tenant based Token Generation for Login (API)- Mobile App

You can check : https://stackoverflow.com/questions/44172221/generate-access-token-with-identityserver4-without-password

3)To Configure Roles in BIMS with BDairy Feature list.(Screen Permissions)

You need reference the applicllation.contarct project to load prmission definitions

4)How to remove the Additional tables like AbpUsers in BIMS BDairy

You just need to unintall the module you don't want and create&apply migration file

5)How to do Redis Configuration

You just need to install redis server and configure connection string.

6)HTTPS in deployment

What is the error log?

You need reference the applicllation.contarct project to load prmission definitions

Can you please provide some instructions or document to perform this?

this is a consultancy topic and not direclty related to ABP code base.
if you face a concrete problem in ABP code we would like to help you.

Hi

this is related to ABP Framework, shiwei.liang@volosoft.com was looking into it and he acknowledged to help out in resolving these issues. Unfortunately he is on vacation.

This on the framework that the Common Identity server is unable to Login with Tenant Login and No Proper Document is provided

No Documentation to Configure or Setup Another Application which uses Common ABP Identity server to setup roles for the Consumer App

Do we have any Updates on this Issues?

its been 5days. we are in release mode and need to conclude ASAP

this is a consultancy topic and not direclty related to ABP code base. if you face a concrete problem in ABP code we would like to help you.

Hi

this is related to ABP Framework, shiwei.liang@volosoft.com was looking into it and he acknowledged to help out in resolving these issues. Unfortunately he is on vacation.

This on the framework that the Common Identity server is unable to Login with Tenant Login and No Proper Document is provided

No Documentation to Configure or Setup Another Application which uses Common ABP Identity server to setup roles for the Consumer App

hi

Please create some new questions, Explain your question in detail separately.

The Architecture is configured as per the points listed below.

Step1: We have split the applications with common Identity Server. Step2: BIMS is one main application which handled users and their accesses Step3: BIMS_BDairy is another application which uses the Identity Server of BIMS

We need solution for addressing these points.

1)Tenant based login - AbpUsers, AbpUserRoles - StoreManager,Admin,HR - High level people

Step1: We will have tenants created in our main application (BIMS) Step2: We will have users created logins created against these tenants, Step3: At the Service level we need to validate this user with his credentials and allow access to the Service with the approriate tenant and user details set in the context.

This is not working now, it works only for Host login and not for Tenant Login. This needs to be addressed

2)Tenant based Token Generation for Login (API)- Mobile App

Step1: We are having a Mobile Application in which these tenant users will login using the mobile App using say EmployeeID and not his/her username or password Step2: We need to validate the user against the credentials and generate token to access the Services.

3)To Configure Roles in BIMS with BDairy Feature list.(Screen Permissions)

Step1: We have split the applications with common Identity Server. Step2: BIMS is one main application which handled users and their accesses Step3: BIMS_BDairy is another application which uses the Identity Server of BIMS Step4: How do i get the permission of BDairy in BIMS for the user to set access in the BIMS Application using the permissions tab

4)How to remove the Additional tables like AbpUsers in BIMS BDairy

Step1: We have split the applications with common Identity Server. Step2: BIMS is one main application which handled users and their accesses Step3: The same users,login,clients etc tables are created also in BDairy how to avoid this as this has to be at BIMS level and not in BDairy

5)How to do Redis Configuration

Step1:How to do Redis Configuration in Windows server for Production. Need documentations for the same.

6)HTTPS in deployment

Step1: When we deploy the AppServices BIMS and BDairy in IIS and configure https for these service, it throws as invalid uri exception. It works when we provide only Http. Step2: We have cross refernence calls like from BDairy AppService we will call a method in the BIMS AppService for fetching some data

Hi

The Following points were discussed with Shiwei Liang and it seems he is on vacation. Need support from anyother person.

These are the points which needs to be resolved on high priority.

  1. Tenant based login - AbpUsers, AbpUserRoles - StoreManager,Admin,HR - High level people
  2. Tenant based Token Generation for Login (API)- Mobile App
  3. To Configure Roles in BIMS with BDairy Feature list.(Screen Permissions)
  4. How to remove the Additional tables like AbpUsers in BIMS BDairy
  5. How to do Redis Configuration
  6. HTTPS in deployment

Can you share some screenshots and logs?

Hi It is very difficult to explain in screenshots and logs. Pls suggest a time for a screen sharing tomorrow morning. This is urgent.

Hi

The Authorization check for MultiTenant and mobile based login, which you have suggested is not working. Need your help to address it. It is of high priority.

Sent a mail to your mailid a screen sharing session

Hi,

OK, we can, please send email to me.

I don't have your email. https://meet.google.com/zng-kneo-ron

Pls suggest a time for the call today. This is the meeting link

86 प्रविष्टियों में 61 से 70 दिखा रहा है
Made with ❤️ on ABP v8.2.0-preview Updated on मार्च 25, 2024, 15:11