Solved
Solved, you need use same db for all HttpApi.Host
Hi,
Sorry, Can you explain in detail?
Hi,
I think this is your network problem , and you must add --preview option, because 4.3.0 is preview version now.
at the moment, the redirect after i log out takes me to https://app.promailnet.com/authentication/logged-out , but i want it to go back to the login screen.
See https://stackoverflow.com/questions/39909419/what-are-the-main-differences-between-jwt-and-oauth-authentication.
what is the advantage of using OPENID vs regular JWT token and attaching to the header ?
OpenID Connect - OpenID Connect builds on top of OAuth2 and add authentication. OpenID Connect add some constraint to OAuth2 like UserInfo Endpoint, ID Token, discovery and dynamic registration of OpenID Connect providers and session management. JWT is the mandatory format for the token.
See https://support.abp.io/QA/Questions/1152/How-to-to-Login-page-when-accessing-the-app-and-after-logout#answer-5c9c7a51-3689-9ec8-e5b6-39fbc698d514
Hi,
See https://support.abp.io/QA/Questions/69/License-check-failed-for-'VoloAbpLanguageManagementDomainShared-v2300'
Hi,
It's possible,
There is awsome repo: https://github.com/Eastrall/EntityFrameworkCore.DataEncryption, I think it will be helpful.
Or you can use ASP.NET Core Data Protection API: https://docs.microsoft.com/en-us/aspnet/core/security/data-protection/using-data-protection?view=aspnetcore-5.0
Is it possible to deploy a combined instance? I.e. no need for API seperation.
I don't understanding what you mean,
Blazor web assembly is separation of front-end and backend.
Maybe you need blazor-server:https://docs.microsoft.com/en-us/aspnet/core/blazor/host-and-deploy/server?view=aspnetcore-5.0
Hi,
I find a better way,
[Authorize]
public partial class Index
{
}
Pages/Authentication.razor
@using Microsoft.AspNetCore.Components.WebAssembly.Authentication
@using Volo.Abp.DependencyInjection
@inherits Volo.Abp.AspNetCore.Components.WebAssembly.LeptonTheme.Pages.Authentication
@inject NavigationManager _navigationManager;
@attribute [ExposeServices(typeof(Volo.Abp.AspNetCore.Components.WebAssembly.LeptonTheme.Pages.Authentication))]
@attribute [Dependency(ReplaceServices = true)]
<Card>
<CardBody>
<RemoteAuthenticatorView Action="@Action">
<LoggingIn>
<LoadingIndicator/>
</LoggingIn>
<CompletingLoggingIn>
<LoadingIndicator/>
</CompletingLoggingIn>
<LogOut>
<LoadingIndicator/>
</LogOut>
<CompletingLogOut>
<LoadingIndicator/>
</CompletingLogOut>
<LogOutSucceeded>
@{
_navigationManager.NavigateTo("/authentication/login");
}
</LogOutSucceeded>
</RemoteAuthenticatorView>
</CardBody>
</Card>