Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Last, you have to disable any default authentication in asp.net by turning the authentication mode to None in the <system.web> section

Code Block
&nbsp;&nbsp;&nbsp;<authentication mode="None">
&nbsp;&nbsp;&nbsp;</authentication>
&nbsp;&nbsp;&nbsp;<authorization>
&nbsp;&nbsp;&nbsp;&nbsp;<authorization>
    <allow users="*"/>
&nbsp;&nbsp;&nbsp;</authorization>

As every request is intercepted by the module, only authenticated user gains access to the application. Of course you also have to deal with authorization, here every authenticated user is allowed to process the application.

...