...
an httpModules tag to declare the module.It is not even necessary
to declare an authentication tag in the config file. 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 |
---|
<authentication mode="None">
</authentication>
<authorization>
<allow users="*"/>
</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.
Windows Sharepoint Services 3
...