Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
ASP .Net
ASP .Net Security
Have <authentication mode="Windows"> half working
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
Reply to thread
Message
[QUOTE="David Thielen, post: 4280526"] And here is the entire Web.Config: <?xml version="1.0"?> <configuration xmlns="[URL]http://schemas.microsoft.com/.NetConfiguration/v2.0[/URL]"> <configSections> <section name="WindwardReports" type="System.Configuration.NameValueSectionHandler"/> <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/> </configSections> <WindwardReports> <add key="_debug" value="true"/> </WindwardReports> <log4net> <appender name="ConsoleAppender" type="log4net.Appender.ConsoleAppender" > <layout type="log4net.Layout.PatternLayout"> <conversionPattern value="%date [%thread] %-5level %logger [%ndc] - %message%newline" /> </layout> </appender> <root> <level value="INFO" /> <appender-ref ref="ConsoleAppender" /> </root> </log4net> <appSettings/> <connectionStrings> <add name="ADService" connectionString="LDAP://picard.windward.local"/> <add name="WindwardPortal" connectionString="Data Source=BELLE;Initial Catalog=WindwardPortal;Integrated Security=True" providerName="System.Data.SqlClient"/> </connectionStrings> <system.web> <roleManager enabled="true"/> <compilation debug="true"> <assemblies> <add assembly="System.Security, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="vjscor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="vjslib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> </assemblies> </compilation> <!-- <pages theme="MSN_Blue"/> --> <authentication mode="Windows"> </authentication> <identity impersonate="true"/> <authorization> <deny users="?"/> </authorization> <!-- <authentication mode="Forms"> <forms loginUrl="login.aspx"> </forms> </authentication> <authorization> <deny users="?"/> </authorization> <membership defaultProvider="AspNetSqlMembershipProvider"/> <authentication mode="Forms"> <forms name=".ADAuthCookie" loginUrl="login.aspx"> </forms> </authentication> <authorization> <deny users="?"/> </authorization> <membership defaultProvider="MyProvider"> <providers> <clear/> <add name="MyProvider" type="System.Web.Security.ActiveDirectoryMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="ADService" attributeMapUsername="SAMAccountName" /> </providers> </membership> --> </system.web> </configuration> [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
ASP .Net
ASP .Net Security
Have <authentication mode="Windows"> half working
Top