Hello Team,
Currently our project has been developed on ANZ 8.6.0 version platform and we want to upgrade ANZ platorm to latest 11.0.0 version. On our initial analyzing, we have seen that there are many break changes has been done in platform so we can't simply upgrade platform to latest version. Can you guide us how we can upgrade our project to latest ANZ platform (we have around 250+ pages) in less time or how we can upgrade our project to .NET 6.0 and Angular 13 version.
Thanks, SS
Hello Team,
we are looking for settings where we want to achives the langauge selection from forntend side.
For an example, we have two langauge "English" and "German", default language is "English".
Now, When user default browser is in "German" then we get application in german that part is correct. But we want to provide the dropdown setting so user can change the langauge and used when they required.
Thanks, SG
Please answer the following questions before submitting an issue.
Hello,
I am looking for solutions where we have a requirement like access the endpoint by generating the custom JWT Token, different from ABP token, using properties like User email, tenantId, and some related to our project.
At present, the endpoint is publicly accessible using the "AbpAllowAnonymous" attributes. The endpoint is publicly accessible regardless of whether we use [Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)] or [Authorize].
we don't want to use "[AbpAuthorize]" for some Endpoint.
Thanks SG
Please answer the following questions before submitting an issue.
Hello Team, Currently we are planing to upgrade new ANZ version from v8.6.0 to v10.5.0. We need your help and suggestion how we can easly upgrade to new ANZ version. Also we have check abp commercial platform avaiable in market. Can you also guide us how it is different between ANZ and abp commercial version? Is it batter to move on apb commercial version? If it is batter, our current license support to move on abp commercial?
Thanks, JJ
I want to customize user friendly exceptions which are thrown where user login using abp authentication method. I don't want to display error message in popup(alert).
Hello,
We are looking for a solution where we need on demanding loading items of the permission, features, and module vise loading of the localization file(.xml).
Currently, How its work in your frameworks. It's loads the item before login and after login. For that reason, it takes much time to load login page. we have 10,000+ localization resource, 1000+ permission, and 100+ features.
Thanks, SG
Hi ANZ,
I am trying to run aspnet-core project api in docker, below is the my docker file. I am getting certificate issue, i tried fresh visual stuido web api project with same configuration its working perfect. I also try in ANZ fresh project but still issue remain same. I also check certificates location in container i can see the certificate are there.
DockerFIle
Hello Team, We have requirment where we want to provide user to export more then 1000 rows but due to currently max. limit in platform we are unable to export. Can you guide us how we can achieve such type of scenario to export more then 1000 rows.
Thanks, JJ
Hello Team, We have configured Hangfire for run background job. Now we face multiple issue while running background Job: 1) Exception: "Execution Timeout Expired..." 2) Exception: "This is usually caused by different threads using the same instance of DbContext..." 3) While updating to table, LastModifierUserId user getting blank.
My requirment is I want to execute code in background and if any exception occured, have to update status in table and also send mail in background because as per current ABP architecture it getting rollback everything.
Currently I have written code as per below and face issue as per describe above:
[AbpAllowAnonymous]
public async Task<string> MyFunction(MyModel myModel)
{
using (var uow = _unitOfWorkManager.Begin())
{
using (_unitOfWorkManager.Current.SetTenantId(myModel.TenantId))
{
try
{
_unitOfWorkManager.Current.SaveChanges();
}
catch(Exception ex)
{
}
finally
{
await UpdateStatus();
BackgroundJob.Enqueue<MyRepoAppService>(t => t.SendMail(myModel));
}
uow.Complete();
}
}
}
private async Task UpdateStatus(bool IsFail)
{
myModel.IsFail = IsFail;
await myRepo.UpdateAsync(myModel);
}
public async Task SendMail(MyModel myModel)
{
using (var uow = _unitOfWorkManager.Begin(TransactionScopeOption.RequiresNew))
{
using (_unitOfWorkManager.Current.SetTenantId(myModel.TenantId))
{
.
.
.
Send Mail...
}
uow.Complete();
}
}
Thanks, JJ
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
Hello Team, Currently we are facing very strange issue. While we are fetch records using GetAll method of repository, we are getting error "An internal error occured during your request!". On background we are checking the root cause and found that there are few reocrds which are not available in database table but while using GetAll method of repository we are getting those records. Now while trying to fetch records without repository (using dbContext method) it working fine. Our Server and Database on Azure platform. We are facing this in our production so please considure this issue as high priority.
Thanks, JJ