hi
You can take a look at this document.
https://docs.abp.io/en/commercial/latest/startup-templates/microservice/interservice-communication
Does the back-end application have any error logs?
hi
You are using IdentityConstants.ExternalScheme(https://localhost:5001/) as SignInScheme of OpenIdConnect.
but the default scheme is Identity.Application(account/login).
The Authorize of CustomPage will try authentication with Identity.Application(account/login).
I don't recommend you change DefaultSignInScheme.
hi
Please add ChatWebModule as well.
If still not working please share a project. liming.ma@volosoft.com
hi
public async Task<List<string>> GetOrgUnitUsers(CancellationToken cancellationToken = default)
{
await EnsureConnectionOpenAsync(cancellationToken);
using (var command = await CreateCommand("GetOrgUnitUsers", CommandType.StoredProcedure, new SqlParameter("OrgUnitIds", "1")))
{
using (var dataReader = await command.ExecuteReaderAsync(cancellationToken))
{
var result = new List<string>();
while (await dataReader.ReadAsync(cancellationToken))
{
result.Add(dataReader["Id"].ToString());
}
return result;
}
}
}
Had you checked the cache on Redis?
You can try to change the current tenant to host
public async Task<CacheItem> GetAsync(string id)
{
using (_currentTenant.Change(null))
{
var rec = await _cache.GetAsync(id);
return rec;
}
}
hi
The permission(Chat.Messaging) exists on ChatApplicationContractsModule Can you confirm that you are depending on it correctly?
hi
Please share the project. liming.ma@volosoft.com
hi
Please use the using for whole method.
private async Task HandleValidSubmit()
{
using (var uow = _unitOfWorkManager.Begin())
{
//...
// Your code
await uow.CompleteAsync();
}
}
I confirmed the Master-details page is not supported in suite