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.

hi,

i am using MVC jQuery DotNet Template.

i have configured LDAP authentication as mentioned in your documentation and it is working fine. problem is that it shows a login screen and user have to enter user name password. i want to have automatic login since application will be hosted on intranet and users are already logged in to computer using their domain account.

i have gone through following all issues but couldn't find a solution. https://support.aspnetzero.com/QA/Questions?Sort=CreationTime-desc&Filter=Windows+authentication

In Normal MVC application i just need to change IIS settings but in aspnet zero may i know how it can be done?

Answer

@zokho: did you got any solution?

Hi,

Can you provide detail documentation for ADFS integration.

  1. when adfs configuration is done what are the properties which are required and what should be their name.
  2. when user will access the site for the first time, after getting a token from ADFS we need to add a user to Users table and default roles, may i know the method and class in which i can do that.

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 have done below steps Configuration.MultiTenancy.IsEnabled = false;// AbuDhabiPoliceConsts.MultiTenancyEnabled;

        //Enable LDAP authentication (It can be enabled only if MultiTenancy is disabled!)

Configuration.Modules.ZeroLdap().Enable(typeof(AppLdapAuthenticationSource));

In setting, I have enable the Windows Authenication still i am unable to login.

https://docs.aspnetzero.com/documents/zero/latest/Development-Guide-Mvc-Angularjs We are using ASP.NET MVC 5.x & JQuery Template Please help

Hi,

I would like to enable auditing in certain section of application only, when some changes to data happens. Like change in Role Permission, User assignment to roles and when data is added or modified in few entities created for my application.

Can you guide me how to achive above requirement?

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.

Showing 1 to 10 of 13 entries