Base solution for your next web application

Activities of "azmat"

Hi, I tried what we normally do for ASP.MVC Application in web.config and IIS however it’s not working. In web.Config  under <system.web> <authentication mode="Windows">        </authentication> Set Authentication in IIS Anonymous disable Windows enable In Internet Setting set the Website under safe site and set allow windows user and password to true ( Windows Popup will not come in this case) I think ASP.Net Zero architecture is not the same whether any smart way to get Single Sign-on working on it.

Answer

@zokho: did you got any solution?

managed to do it by setting application pool account to domain account and removing domain name from settings page.

managed to achieve it by adding [DisableAuditing] in all controllers and services methods where auditing is not required.

Ideally there should be a way to stop auditing for whole application and enable it only on required Controllers and services

I managed to schedule it in PostInitialize using following code.

RecurringJob.AddOrUpdate<MortgageStatusService>("Synchrnize-With-xxxxxxxx", x => x.Execute(1) , Cron.MinuteInterval(15));

that i figured out but i want to know the syntax to configure a job to run after every 15 minutes.

My application requirement is pretty basic, i want to use Rapid Application Development tool and feature wise i need Audit History, Permission Management, LDAP authentication and Hangfire for background jobs.

If by using .Net Framework i can avoid installing .Net Core in my production environment then it will be easier for me, otherwise i need to convince system admin to install it which is time consuming.

Showing 1 to 7 of 7 entries