Hi,
You need to configure the SignalR URL.
For example:
Configure<ChatBlazorWebAssemblyOptions>(options =>
{
options.SignalrUrl = builder.Configuration["RemoteServices:Chat:BaseUrl"];
});
Could you share all the logs with me? Thanks.
No configuration found for Microsoft.EntityFrameworkCore.DbContext, Microsoft.EntityFrameworkCore, Version=7.0.1.0, Culture=neutral, PublicKeyToken=adb9793829ddae60! Use services.Configure<AbpDbContextOptions>(...) to configure it.
You are installing the chat module to product service, right? You can try:
public class ProductServiceDbContext : AbpDbContext<ProductServiceDbContext>, IChatDbContext
....
context.Services.AddAbpDbContext<ProductServiceDbContext>(options =>
{
options.ReplaceDbContext<IChatDbContext>();
options.AddDefaultRepositories(includeAllEntities: true);
});
Can you share the ocelot.json file content?
Hi,
Yes, that's is. I will create an internal issue to fix it; thanks.
In the meeting I manually added the SaasApplicationContracts project to the admin service, it loads static permission definitions. I think it should be working now.
If it's still now working, please let me know.
Hi,
The meeting has expired.
The database should be like this:

Each service will persist the permission definition in the database when the application is initialized. https://github.com/abpframework/abp/blob/dev/modules/permission-management/src/Volo.Abp.PermissionManagement.Domain/Volo/Abp/PermissionManagement/AbpPermissionManagementDomainModule.cs#L64
https://us05web.zoom.us/j/81336275630?pwd=bmlSNXN4dkhyMWc3YTRva0lYbnZNQT09
Hi,
I don't think this is related to MYSQL, because the project you shared works for me.
Can we have a meeting via zoom? I'd like to check it remotely.
HI,
Can you share the error logs? Gateway and chat service. thanks.