- Could you please tell me what could be the issue?
- Is dbmigrator will collect the data from IdentityServer tables and push in to OpenIdDict tables (Schema + Data)?
dbmigrator will only create Scopes and Applications in the template. they come from https://github.com/abpframework/abp/blob/dev/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.DbMigrator/appsettings.json#L5
So you can change the
appsettings.json
and reseed your client from the identity server.
how can the data be imported from Identity tables to OpenIddict tables without migration?
The client(application) stores at
OpenIddictApplications
tables.Please check the logs to see the details error of
invalid_client
I have added the required values in the below tables.
but when I post the token request from Postman, I am getting the below error, 1. Could you please tell me what could be the issue? 2. Is dbmigrator will collect the data from IdentityServer tables and push in to OpenIdDict tables (Schema + Data)?
HI
You can migrator a new database and then check the tables of OpenIddict.
You need to add all scope names in postman.
Using DbMigrator only I have done the migration successfully (its showing tenant db seed also done successfully, but it didn't), see the below screen shot for the same, but the OpenIdDict related table is empty.
I have added all scope names in postman see below screen shot (in last screen shot I think its minimized)
Could you please let me know how to seed data from Identity Server tables (baked up) to OpenIdDict tables?
Hello,
You need to update the angular version to 14. ABP 6.0 version works with angular 14. You can update with
ng update
command.Also you need to install
@volo/abp.ng.openiddictpro
package.
@volo/abp.ng.openiddictpro
package?hi
There are detailed steps.
https://docs.abp.io/en/commercial/6.0/migration-guides/openIddict-step-by-step
Hi,
followed that guide for my Microservices Solution, For Angular Project, they mentioned only the change in "environment.ts" file, need to change the issuer url only as below. remaining all about backend core apis microservices solution.
but in Angular there is reference packages for Identity Server, saas, Lepton, Audilogs in "Package.json" and in other modules also, how to change those to OpenIdDict? (below are my Angular app reference screen shots)
hi
https://docs.abp.io/en/abp/latest/Migration-Guides/Abp-7_0 https://docs.abp.io/en/commercial/latest/migration-guides/v7_0
and how about Identity Server?
You can use Identity Server or migrator to OpenIddict.
https://docs.abp.io/en/abp/latest/Modules/OpenIddict https://docs.abp.io/en/abp/latest/Migration-Guides/OpenIddict-Step-by-Step https://docs.abp.io/en/commercial/latest/migration-guides/openIddict-step-by-step https://docs.abp.io/en/commercial/latest/modules/openiddict
Hi,
I have upgraded Dotnet Core to abp 6 and OpenIdDict migration also done.
Problem Statement - I ran abp update command only on dotnet core application not on anular initially, Now I am trying to run on Angular application, its giving No Solution/Project found in this directory, so to do this is there any alternatives rather than doing manually?
hi
The
abp update
command will only help you upgrade the version of the package, I suggest you manually update the package and other breaking changes.Can I update both (Angular + Dotnet Core) to Abp Version 7.0 directly at a time now?
is these are sufficient or any other required to update? and how about Identity Server?
hi
The
abp update
command will only help you upgrade the version of the package, I suggest you manually update the package and other breaking changes.
Can I update both (Angular + Dotnet Core) to Abp Version 7.0 directly at a time now?
I remember that your project is very complicated. You can try to reproduce the problem in the template first. Thanks
is there any changes related to tenant admin databases after upgrading to abp 6.0.2 & openIddict?
I have removed all the Migrations, dbs and pointed to new db connections, after this host database migrations and seed of host database is done but as "SaasTenantConnectionStrings " is not present (as its a new db), it is not migrating & seeding of tenant database.
after updating the "SaasTenantConnectionStrings" table, I ran the dbmigrator then its displaying errors like tables are presented in host database without going to tenant db.
what is the solution for this?