- ABP Framework version: v5.0.1
- UI type: Blazor Server
- DB provider: EF Core
- Tiered (MVC) or Identity Server Separated (Angular): yes
Hello, I create project with module template from suite. But I need to blazor Server Host project call remote service from api and should use identityserver not unified. Default Its create work unified. I trying to convert it but I stuck. When I click login button its not redriect identityserver project Show message like this
How can I say to suite, create module project but blazor server host should be work like web assembly(not unified)
Can you create module solution like this and send my email? project name is can be "Kuys.Module.EmployeeManagement"
We feed our microservices with modules. We are experiencing unexpected errors as we work this unified way.
Thanks
9 Answer(s)
-
0
Hi @murat.yuceer
Firstly, can you share steps to reproduce that error you faced?
How can I say to suite, create module project but blazor server host should be work like web assembly(not unified)
Doesn't the following command with ABP CLI solve your problem at the moment?
abp new Module2376 -t module
And those projects below you should run for test.
You can remove all UI projects except Blazor & Blazor WebAssembly.
-
0
My problem is, Blazor.Server.Host project is unified project. Its not work with HttpApi.Host and IdentityServer. Configured to run standalone default. I need to harmonize them.
-
0
Ok, got it. You need a tiered solution for Blazor-Server right?
-
0
Ok, got it. You need a tiered solution for Blazor-Server right?
Yes, thanks
-
0
You need to replace
XXX.Application
andXXX.EntityFrameworkCore
packages withXXX.HttpApi.Client
package for each module in Blazor.Server.Host projectAlso, you need to remove your
Kuys.Module.EmployeeManagement.Application
andKuys.Module.EmployeeManagement.EntityFrameworkCore
project references from your Blazor.Server.Host project and addKuys.Module.EmployeeManagement.HttpApi.Client
project reference to it.After those changes make sure your AuthServer and RemoteServices configurations are made properly.
You can create a tiered project with following command and compare configuration.
abp new MyTieredBlazorApp --tiered -u blazor-server
-
0
-
0
Can you create example module project with tiered blazor server.
-
0
Just I need empty working module project with tiered hosted blazor server example I can give my email addresss
-
0
problem was account controller.