hi
I have reproduced the problem, and will provide a solution soon.
Thanks.
hi
Has your project depended on AbpHttpClientIdentityModelWebModule?
Can you share the source code?
Thanks.
ok, I will check the source code.
Thanks.
hi
Different pages will use different AppService, and abp will know which AppService's URL to use.
{
"RemoteServices": {
"Default": {
"BaseUrl": "http://localhost:53929/"
},
"ServiceA": {
"BaseUrl": "http://localhost:48393/"
},
"ServiceB": {
"BaseUrl": "http://localhost:48394/"
}
}
}
https://abp.io/docs/latest/framework/api-development/dynamic-csharp-clients#multiple-remote-service-endpoints
Thanks.
hi
If you have a MyDefinitionProvider class. Your api website(consumed by wasm) has to depend on it.
Thanks,.
hi
Now I want to use this module in 2 services concurently. As my understanding, all tables of Identity module will be created in database of each service. Right
If your two services use independent database, Yes .
But the code to manage all those tables is located in Identity module. So how to reuse UI in Indentity module and get correct data of Identity module for each service? It means each service will have the same UI, just different data.
The Identity.Web is a UI layer, it will use app service interfaces to manage the data.
In a single-layer app. It directly depends on application services. In a tiered app. It will use a C# proxy to send HTTP requests to your api website.
https://abp.io/docs/latest/framework/api-development/dynamic-csharp-clients https://abp.io/docs/latest/framework/api-development/static-csharp-clients