Is the next patch release date obvious?
You're welcome 👍
Hi,
It works now. Thank you.
There are some enconding characters (%20) at the end of the latest-version.json file url. Is it possible that the latest version information cannot be obtained because of this when performing an ABP update?
I want to upgrade my project to latest abp version. Existing abp version: 9.0.5
First, i successfully updated Volo.Abp.Studio.Cli and Volo.Abp.Suite to the latest version. Then i tried runnig "abp update" command in project root folder.
I am getting console messages that almost all packages is up to date (except LeptonX and Volo.Abp.Studio.Client.AspNetCore)
Other login command: abp login [user.name] --organization [OrganizationName] [19:24:42 INF] You are running the second generation of the ABP CLI. If you're interested in the legacy CLI, see https://abp.io/new-cli Password: [19:24:47 ERR] Could not retrieve the OpenId Connect discovery document! ErrorType: Http. Error: Error connecting to https://account.abp.io/.well-known/openid-configuration: Forbidden
Alternative to Organization name, i have tried with organizationId the result is same, like below:
abp login [user.name] --organization [11111-11111-1111-45a2-39fc9f8a1bd0] -> [OrganizationId from https://abp.io/my-organizations/....................] [19:25:58 INF] You are running the second generation of the ABP CLI. If you're interested in the legacy CLI, see https://abp.io/new-cli Password: [19:26:04 ERR] Could not retrieve the OpenId Connect discovery document! ErrorType: Http. Error: Error connecting to https://account.abp.io/.well-known/openid-configuration: Forbidden
I have uninstalled all abp related tools and re-install the Volo.Abp.Studio.Cli latest version and tried again, result is same.
I have tried deleting .-license.bin files, result is same too.
I have not had any problems until today, but today I cannot use my abp commercial account.
We created a project with microservice commercial template and deployed project to Azure Kubernetes Services. All applications, services and gateways running with no error stand-alone. At authserver ui, user can successfully sign in. But, when backoffice application (management application created with MVC razor UI) trying to access authserver for authentication, request forwarded to authserver successfully and then with correct cridentials, authhentication completed successfully but when returning back to the backoffice web application (signin-oidc) there is no action and no redirect to the Backoffice web application. We contolled OIDC urls many times, and at local development environment it works successfully. There is no such error on IIS deployment. We did the OnApplicationInitialization code updates at AuthServerModule described the documentation: https://docs.abp.io/en/commercial/latest/startup-templates/microservice/applications#running-authserver-on-kubernates-pods Authserver and backoffice web application have SSL config.
How can we solve this problem?
Thanks for your help.
hi maliming,
Thank you for help, it worked perfectly.
I also strongly recommend that add all these information to the documentation for microservice inter-communication.
hi
I mean you can create a new microservice project and add some code to reproduce the problem.
abp new BookStoreMS -t microservice-pro
hi maliming,
i have created fresh microservice-pro project. The steps that followed: 1- Completed microservice solution settings for successful run and test. 2- Added new microservice (OrderService) to the solution, edited settings and controlled successful run 3- Added new entity (OrderInfo) to OrderService 4- Completed settings for accessing from OrderService to ProductService via InternalGateway (like described previuos answers) 5- Added required references to projects (like described previuos answers) 6- Added code to OrderService.OrderInfoAppService.GetListAsync() method for accessing ProductService.ProductAppService.GetListAsync() like below: var list = await _productAppService.GetListAsync(new GetProductsInput { }); 7- Run tye without AuthServer, InternalGateway, OrderService and ProductService 8- Run AuthServer, InternalGateway, OrderService and ProductService in debug mode 9- At web project, login and then clicked Order Infos menu item 10- Results were same ! .../api/product-service/products request sent from OrderService to InternalGateway InternalGateway logs: first: No authorization required for .../api/product-service/products, then: 401 unauthorized
I shared wetransfer link for solution zipFile to you via mail.
Thanks
hi,
i did not understand what you mean for "use the template ms project to reproduce this" ?
Project/solution structure is too big, min. 14 .sln file, I have shared part of realated documents (code, setting, debug logs,...) and steps at previus answers for this ticket. Is there any other solution than sharing all project structure?
Thanks