Hello ismcagdas. I followed mentioned document but unfortunately I was not able to make it work.
This is - I guess - the essential part:
Configuration.Localization.Sources.Extensions.Add( new LocalizationSourceExtensionInfo("AbpWeb", new XmlEmbeddedFileLocalizationDictionaryProvider( Assembly.GetExecutingAssembly(), "MyCompany.MyProject.Localization.Sources" ) ) );
I tried a few more things but the above mentiones seems to me the most logical :o).
What am I missing?
Thanks, Martin.
Hello. Is there any way how I can update the "Current user did not login to the application" error message from ABP? I couldn't find this option anywhere in the code. Thanks.
Best regards, Martin
Hi maliming. Thanks for the quick reply. I am not sure what happened but things that didn't work yesterday work today... I restarted my notebook, maybe that may have solved the issue? It's a bit embarrassing as I spend entire day yesterday trying to make this work. Anyway, consider it fixed.
Best regards, Martin.
Hello. I am trying to create custom session using this article (and several others) but it seems to be already obsolete. I need to create custom session with one (for the sake of simplicity) enum called AdelRoles that is changed on users login action. I have added following code:
Session Class:
public class AdelSession : ClaimsAbpSession, ITransientDependency
{
public AdelSession(
IPrincipalAccessor principalAccessor,
IMultiTenancyConfig multiTenancy,
ITenantResolver tenantResolver,
IAmbientScopeProvider<SessionOverride> sessionOverrideScopeProvider) :
base(principalAccessor, multiTenancy, tenantResolver, sessionOverrideScopeProvider)
{}
public AdelRoles AdelRoles
{
get
{
var adelRoles = PrincipalAccessor.Principal?.Claims.FirstOrDefault(c => c.Type == "AdelRoles");
if (string.IsNullOrEmpty(adelRoles?.Value))
{
return AdelRoles.None;
}
return (AdelRoles)int.Parse(adelRoles.Value);
}
}
}
TokenAuthController:
private void UpdateAuthorizationGroup(User user, ClaimsIdentity identity)
{
var adelRoles = AdelRoles.Supporter;
identity.AddClaims(new List<Claim>() { new Claim("AdelRoles", ((int)adelRoles).ToString()) });
}
that is called at the end of Task<AuthenticateResultModel> Authenticate([FromBody] AuthenticateModel model) method:
.....
//Login!
UpdateAuthorizationGroup(loginResult.User, loginResult.Identity);
var accessToken = CreateAccessToken(CreateJwtClaims(loginResult.Identity));
return new AuthenticateResultModel
{
AccessToken = accessToken,
EncryptedAccessToken = GetEncrpyedAccessToken(accessToken),
ExpireInSeconds = (int)_configuration.Expiration.TotalSeconds,
TwoFactorRememberClientToken = twoFactorRememberClientToken,
UserId = loginResult.User.Id,
ReturnUrl = returnUrl
};
Then later I read from my AdelSession.AdelRoles but unfortunately I always get AdelRoles.None as AdelRoles is not among the claims.
What am I doing wrong?
Thanks for any hint. Best regards, Martin.
Hello. Thanks for quick reply. At the end it turned out that my appsettings.json file was configured not to copy to Debug folder, so the AbpZeroLicenseCode was always null. Thanks, Martin
Hello. For our project we need import old data from MySQL database, so I have created new console application and added it among the projects. I have entered the AspZeroLicenseCode to my appsettings.json. Unfortunately I'm unable to start it, because it complains incorrect project name:
Failed to validate project name. Should not rename a project downloaded from aspnetzero.com.
Here is my solution structure:
What exactly are the rules that are being checked (regarding the project name)?
Thanks, Martin