hi
https://support.abp.io/QA/Questions/3448/How-to-Deploy-Net-60-web-api-Application-on-windows-server-IIS#answer-5f70c8df-651b-08ba-ec76-3a053289a6f4 https://support.abp.io/QA/Questions/3327/Health-Check-Problem-on-IIS-SystemUriFormatException-Invalid-URI-The-hostname-could-not-be-parsed#answer-51baf847-087a-2aa1-1d76-3a04d9420894
hi
Can you share the details error of Request Entity Too Large error?
Thanks
You're welcome. : )
hi
Your question credits has been refunded.
hi
In the application solution, added some cshtml templates, for use with the emailing + text templating system.
Bundle problem.
Please share the content of the https://yourdockerwebsite/Cns.CloudTools.Blazor.styles.css in docker.
Btw you are not using the CloudControlCenterBundleContributor class in your project. see https://docs.abp.io/en/abp/latest/UI/AspNetCore/Bundling-Minification#bundle-contributors
The Index.razor.css is load by https://learn.microsoft.com/en-us/aspnet/core/blazor/components/css-isolation?view=aspnetcore-8.0
hi
You can check our migration guide.
https://docs.abp.io/en/abp/latest/Migration-Guides/Abp-7_4#exposing-integration-services
https://docs.abp.io/en/abp/latest/Migration-Guides/Index https://docs.abp.io/en/commercial/latest/migration-guides/index
hi
Please share the source code of the test application and module.
liming.ma@volosoft.com
Thanks.
hi
Try to add the code below to your IdentityServiceHttpApiHostModule
Configure<AbpAspNetCoreMvcOptions>(options =>
{
options.ExposeIntegrationServices = true;
});
hi
You can leave returnurl and returnurlhash as the empty string.
And don't use AccountAppService instead of injecting the UserManager and AccountEmailer to do same logic in your EventHandler,
hi
Can you set a breakpoint to see which object is null?
And don't use AccountAppService instead of injecting the UserManager and AccountEmailer to do same logic in your EventHandler,
protected virtual async Task SendEmailConfirmationTokenAsync(
IdentityUser user,
string applicationName,
string returnUrl,
string returnUrlHash)
{
var confirmationToken = await UserManager.GenerateEmailConfirmationTokenAsync(user);
await AccountEmailer.SendEmailConfirmationLinkAsync(user, confirmationToken, applicationName, returnUrl, returnUrlHash);
}