InitializePropertiesFromConfiguration(String serviceName) NullReferenceException

后端 未结 1 1853
不思量自难忘°
不思量自难忘° 2021-01-27 06:26

I have configured \'SessionAuthenticationModule\' based on the instructions from http://www.wiktorzychla.com/2014/11/forms-authentication-revisited-for-net.html. My application

相关标签:
1条回答
  • 2021-01-27 06:57

    You seem to lack the SAM in web.config.

      <httpModules>
             <add name="SessionAuthenticationModule" 
                  type="Microsoft.IdentityModel.Web.SessionAuthenticationModule, Microsoft.IdentityModel, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
      </httpModules>
    

    Take a look at my old tutorial that aims at .NET 3.5

    http://www.wiktorzychla.com/2011/08/quest-for-customizing-adfs-sign-ing-web.html

    0 讨论(0)
提交回复
热议问题