Tagged Questions
0
votes
1answer
25 views
Authentication and role authorization in ASP.NET MVC 4
I'm new to ASP.NET MVC 4 framework, before I developed .NET web apps using ASP.NET Web Forms.
In my new project (I'm updating an existing Web Form project) I need to implement Form authentication and ...
0
votes
1answer
29 views
How will “windows based” authentication work in MVC web application, if users access the application from outside the company intranet
I have the following architecture:-
Active directory server
IIS which will host asp.net MVC
Both the Active directory and the MVC web application are inside our company intranet.
I set the Asp.net ...
0
votes
1answer
17 views
Encryption of the request between different sites for cross domain authentication
There are two sites. The main site, where there is an authentication logic for users and second site that works as an additional service for main site and has its own database, code, technology etc.
...
0
votes
0answers
21 views
Managing authentication for my Asp.net MVC web application
I am trying to accomplish the following:-
To build an Asp.net MVC 4 web application from scratch.
I want to use the current users and groups that are found on our company production active directory ...
0
votes
0answers
35 views
ASP.NET LDAP Active Directory Configuration Error: “The default users container does not exist in the specified domain”
The Configuration
I have an asp.net web application with configurations like this:
...
<configuration>
<connectionStrings>
<add name="ADConnectionString" ...
0
votes
1answer
42 views
How to stop MVC 4 ajax application from redirecting to LogIn.Aspx
For our new application we are switching from MVC 3 to MVC 4. We are using Ajax to fetch most content from the server
In MVC 3 we had the following in the web.config:
<authentication ...
1
vote
3answers
63 views
How to make a blank database for every registered user in ASP MVC4?
How to make a blank database for every registered user or it is already implemented in ASP MVC4? Will they have different databases? For example, in an application, which stores contacts, I would ...
0
votes
0answers
30 views
windows authentication with NTLM is not working in Safari browser
I have enabled windows authentication with NTLM provider for my ASP.NET MVC 3.0 application. The application is working fine on IE and Firefox browsers, but it does not work on Safari browser.
Is ...
2
votes
2answers
47 views
Save user's login method in cookie?
I have an .Net MVC3 website with multiple authentication options:
Facebook
Google
Websites own
When the user initially browses to the site he is asked for his/her choice of authentication and once ...
-4
votes
0answers
23 views
ASP.NET MVC3 Authentication for IOS Client [closed]
I access to my MC3 controllers from an ios client. But i can't find how to make authorization since mvc 3 use the tag [Authorize] ...so I can't verify authentication programmatically when I call my ...
0
votes
1answer
38 views
Dynamic MVC [authorization] for multiple domains
I am currently developing an MVC intranet web app. The same web app will be deployed across multiple domains. I am using windows authorization and authorizing against groups in app's local domain. I ...
0
votes
0answers
180 views
Web API Authentication using facebook access token
The idea
I'm working on an ASP.NET MVC 2 project, building a REST web API. It will be used as the backend of a mobile app (iOS and Android) and possibly in the future, of a facebook app and a ...
0
votes
0answers
46 views
SSO between Spring Security and ASP.NET MVC site
I'm currently working on the ASP.NET MVC 4 website and I have to tie its authentication to the existing Java site. That site uses Spring Security 3 for username/password authentication and has its own ...
0
votes
0answers
84 views
Window Active Directory authentication for Intranet user and Forms authentication for Internet users
How do i implement Window Active Directory authentication for Intranet user and Forms authentication for Internet users, i found many examples online explaining each of them individually but can't get ...
0
votes
1answer
197 views
asp.net mvc 4 websecurity two step login
i have created asp.net mvc 4 internet app.
As you know, there is standard method of authorization there through websecurity.login
inside login action AccountController
if (ModelState.IsValid ...