Dear ASP Zero Support Team,
We are currently utilizing the ASP Zero framework Angular & ASP.NET CORE (currently version 12.0) . As part of this project, we need to deliver our solution in containers. Specifically, we have two containers (or is it just 1 ? Can we deploy in container only in one image?): one containing the Angular application and the other likely containing the ASP.NET Core component.
Our client has recommended using Trivy for pre-deployment security scans to check for malware and other security vulnerabilities. We would like to know if you have any recommendations or best practices for performing such security scans on solutions based on ASP Zero. Additionally, have you conducted similar scans on your codebase, and if so, could you share your general approach or any relevant documentation?
Your guidance on this matter would be greatly appreciated.
Thank you for your support.
Best regards,
Hi,
I get this error
Quartz.IServiceCollectionQuartzConfigurator.UseMicrosoftDependencyInjectionScopedJobFactory(System.Action`1<Quartz.JobFactoryOptions>)
here my code:
private void ConfigureElsa(IServiceCollection services) { services.AddElsa(elsa => { elsa .UseEntityFrameworkPersistence(ef => ef.UseSqlServer(_appConfiguration.GetConnectionString("Default")) ) .AddConsoleActivities() .AddHttpActivities(_appConfiguration.GetSection("Elsa").GetSection("Server").Bind) .AddEmailActivities(_appConfiguration.GetSection("Smtp").Bind) .AddQuartzTemporalActivities() .AddJavaScriptActivities() //.AddWorkflow
elsa.AddActivity<SendEmailActivity>();
elsa.UseAutoMapper(() => { });
}
);****
any idea how to fix?
Cool - thanks
thanks :)
From which version on it is availabe?
Project type: Angular with ASP.NET core - Version 12.0
HI,
I needs to implement OAUTH with Microsoft Entra authentication SSO login - how could that be possible?
Thanks Oliver
Thanks! Somehow I can not access GitHub Link - is there any dosumentation how to use / enable this feature? BG
When we deploy new codes, most of new features work fine but not for some changes. For example, if the front-end developers update the service connection and deploy it, users have to open incognito window or clear cache to see the new feature.
How could the ASPZERO Angular app has to clear cache after new deployment? Any ideas?
Angualr + aspnet core V12.
Hi,
my users whant to set userspecific start page when login - is it possible / how?
Thanks Oliver
Hi,
I pass tenantId from UI to API - the value of tenantId is correct - then I try to set using (CurrentUnitOfWork.SetTenantId(tenantId))
and request for a setting the value: var partnerNameFromDB = await SettingManager.GetSettingValueForTenantAsync(AppSettings.SAMLLoginManagement.PartnerName, AbpSession.GetTenantId());
But what I get as result is the setting from host (where TenandId in database is NULL)
Any idea - here my code:
[HttpGet] public async Task<IActionResult> InitiateMySingleSignOn(string returnUrl, int tenantId) { Logger.Info("returnUrl" + returnUrl + " - tenantId" + tenantId.ToString());
using (CurrentUnitOfWork.SetTenantId(tenantId))
{
try
{
var partnerNameFromDB = await SettingManager.GetSettingValueForTenantAsync(AppSettings.SAMLLoginManagement.PartnerName, AbpSession.GetTenantId());
Thanks
I want to show a notification ... thx