Learn More, Pay Less!
Limited Time Offer!

Activities of "liangshiwei"

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,

See https://docs.microsoft.com/en-us/aspnet/core/blazor/host-and-deploy/webassembly?view=aspnetcore-5.0

You need to change the configuration before deployment:

blazor

HttpAPI.Host

dbmigrator

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>

Hi,

I remember you don't want to user redis, however, we can make a meeting tomorrow

Try abp new Qa -t app-pro -u blazor --preview

Hi,

See https://support.abp.io/QA/Questions/1144/add-public-website-and-CMS-kit-to-existing-application#answer-1ae94ea7-b66c-f0e2-2665-39fbbd832171

@Leonardo.Willrich

You can download new template (4.3.1 rc) for comparison

Showing 5781 to 5790 of 6574 entries
Made with ❤️ on ABP v9.2.0-preview. Updated on February 17, 2025, 05:40