hi
It seems the SaasDbContext gets the wrong connection strings.
Is it possible to share the project code?
liming.ma@volosoft.com
Thanks.
Good news. I will also share a community article to explain this. https://github.com/abpframework/abp/issues/22919
Thanks.
hi
MAUI Blazor hybrid app : works fine locally / when deployed on the android-apple stores, doesn't work.
If you refresh the maui page. Does it works?
We recently added a MauiCurrentApplicationConfigurationCacheResetService. Can you try to add it to your Maui project and override the MauiBlazorCachedApplicationConfigurationClient?
https://github.com/abpframework/abp/pull/22866/files
Thanks.
In fact, it should only exist in the AuthServer project. Why do you access it in the API project?
Great
hi
Message contains error: 'invalid_grant', error_description: 'The issuer associated to the specified token is not valid.', error_uri: 'https://documentation.openiddict.com/errors/ID2088', status code '400'.
The issuer in your access token has a problem.
Can you share an access token with liming.ma@volosoft.com
Thanks.
hi
Try this:
private async Task UpdateVehicleCount(Guid shipmentId)
{
using (var uow = this.UnitOfWorkManager.Begin(requiresNew: true))
{
var shipment = await this.ShipmentRepository.GetAsync(shipmentId);
shipment.VehicleCount = shipment.Vehicles.Count;
await this.ShipmentRepository.UpdateAsync(shipment);
await uow.CompleteAsync();
}
}
hi
What is your project structure(screenshot)?
Which project is the exception log from?
Maybe you have added External provider in the authserver, but access it in the API website.
Thanks.