Configure<WebEncoderOptions>(options =>
{
options.TextEncoderSettings = new TextEncoderSettings(UnicodeRanges.BasicLatin, UnicodeRanges.CjkUnifiedIdeographs);
});
hi
Steps to reproduce the issue:
What are the names of your role?
You can check them in the database.
a)
Microsoft.IdentityModel.Tokens.SecurityTokenInvalidAudienceException: IDX10214: Audience validation failed. A Audiences: 'AccountService, IdentityService, AdministrationService, SaasService, ProductService, LibraryService'. Did not match: validationParameters.ValidAudience: 'FileUpload' or validationParameters.ValidAudiences: 'null'.
Please change the audience
base on the error message.
b)
An error occurred during ConfigureServicesAsync phase of the module Volo.Abp.AspNetCore.Components.WebAssembly.AbpAspNetCoreComponentsWebAssemblyModule, Volo.Abp.AspNetCore.Components.WebAssembly, Version=7.2.1.0, Culture=neutral, PublicKeyToken=null. See the inner exception for details. [ -6]: ---> System.InvalidOperationException: Could not find singleton service: Microsoft.AspNetCore.Components.WebAssembly.Hosting.WebAssemblyHostBuilder, Microsoft.AspNetCore.Components.WebAssembly, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60 [
You need to call the AddApplicationAsync
in your \blazor\src\DragonsHoard.Blazor\Program.cs:line 27
https://github.com/abpframework/abp/blob/d01eb66c79c930c0d2436623905079f60559fae3/framework/src/Volo.Abp.AspNetCore.Components.WebAssembly/Microsoft/AspNetCore/Components/WebAssembly/Hosting/AbpWebAssemblyHostBuilderExtensions.cs#LL17C74-L17C93
https://github.com/abpframework/abp/blob/dev/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor/Program.cs#L12
c) https://docs.abp.io/en/commercial/latest/startup-templates/microservice/add-microservice
d & e)
Could I have a link to this please?
See the API request on the browser console when you upload files etc.
no problem
hi
TaskCanceledException may usually be a request timeout or something.
We need more and details logs of all applications.
hi
: [14:56:56 INF] Sending HTTP request GET https://localhost:44325/api/payment/gateways/subscription-supported?api-version=1.0 : [14:56:56 INF] Received HTTP response headers after 4.9762ms - 404
hi
Did you also Update appsettings.json for Ocelot configuration
?
https://docs.abp.io/en/commercial/latest/startup-templates/microservice/add-microservice
hi
This is because the UpdateAsync
is already in a unit of work.
Thanks.