Hi @ismcagdas,
ANZ v8.6
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
Hi @ismcagdas,
Please check [email protected] i sent mail few days before with issue id.
Thanks, SRTMDEV
Hi @ismcagdas,
find code for angular and api in below linkg,
Link removed for security reasons
Thanks.
Hello Team,
I not asking for specific user services, my mean was to allow user to export more then 1000 rows mean allow end user to export data from any grid.
Thanks, JJ
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
Hello Team,
There was one function which cause this issue so please close this issue for now.
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