Introduction
Since I described in my previous article "Enable Authentication For Securing LightSwitch Application in Visual Studio 2012" how to enable authentication, this article describes how to disable authentication using LightSwitch in Visual Studio 2012.
Using LightSwitch, we can make our application more secure by preventing unauthorized access to the users from reading, changing, or deleting data. If we apply authentication and authorization, then users must prove their identities before accessing the application. So in this way we can make our application more secure.
Authentication
To enable authentication we can use:
- Form Authentication
In form authentication a user must supply a username and a word to access the application and forms authentication is managed by the application itself.
- Windows Authentication
In this no additional username and word is required.
Now I will describe how to disable authentication.
Step 1
Open the Solution Explorer in LightSwitch Visual Studio 2012.
Image 1
Step 2
In the Solution Explorer double-click or right-click and select "Properties", as in the following:
Image 2
Step 3
The "Application Designer" will appear.
Image 3
Step 4
Choose the "Access control" option in the Application Designer.
Image 4
Step 5
Select the type of authentication to use and in this choose the "Do not enable authentication" option to disable the authentication.
Image 5
Step 6
When we run the application we get the following table:
Image 6
Step 7
And after inserting the value the users do not need to provide credential information in order to access the application, and any user can access any part of the application.
Image 7