Forms Authentication is a built-in and extensible system for authenticating users in an ASP.Net application that also maintains that authenticated session via a ticket (often stored as a cookie or query string parameter).
0
votes
0answers
15 views
Integrating Windows and Forms authentication together
I currently have an application where I use both Windows and Forms authentication. Here is how it works.
During authorization, I have a class that checks the user's account name. I then do a check ...
0
votes
0answers
16 views
ReadWidnowsAuthentication login name from server
im implementing a web application in asp.net , im using Forms authentication
when a user open my website i want to get the windows authentication username and check the database if its an old user ...
2
votes
0answers
24 views
Persistent ServiceStack Authentication from MVC 4 Forms Authentication
I've set up a ServiceStack api with a custom auth provider. This all works fine and I can authenticate and use the api as I like.
I've got a seperate MVC4 application with FormsAuthentication that ...
0
votes
1answer
6 views
ASP.NET MVC 4 Cross-Subdomain Authentication. Can't sign out
So I have a site sitting on URL "mysite.com" and another site on "subdomain.mysite.com". User accounts are stored in "mysite.com", so when I need to log in on "subdomain.mysite.com" I take the user to ...
0
votes
0answers
19 views
Preventing multiple login in asp.net mvc (forms authentication)
we are bulding a simple website with a user login. A special requirement is that a user can only be used one time concurrently. So the login credentials can only be used to login again, when the user ...
0
votes
0answers
18 views
Working with ASP.NET forms login with multiple users on the same computer
I'm working with a small team developing an application in C#/ASP.NET and recently we've run into an issue with authentication. The way our program authenticates users is by using Forms Authentication ...
-1
votes
0answers
11 views
What is the concept of Bank Site Authentication ? How they force user to login when session alive ?
Using Forms Authentication. Is it possible to force a user redirect to Login page ? when a user click refresh or close tab (not close browser).
So when user past the url into different tab of the ...
0
votes
0answers
19 views
Session Times out with AD authentication on Jboss
I am implementing Active Directory authentication on an old EJB 1.1/webwork/jboss app and i have replaced this code with an API method for AD and now the application timesout as soon as I Login. here ...
1
vote
1answer
39 views
Tomcat: Multiple authentication schemes for a single web application?
My web application uses internal web API (simple AJAX requests from a browser as it's the major client) that's eventually supposed to be exposed externally for the 3rd parties. Since the API is and ...
0
votes
1answer
20 views
ClaimsPrincipal not getting saved properly
I have an ASP.NET MVC 4 application, in which I'm trying to implement claims-based authentication and authorization. We have an SSO proxy that inserts certain info about the user (such as username) ...
1
vote
2answers
66 views
Howto use new MVC5 Authentication with existing database
I've looked through the current literature but I'm struggling to workout exactly how to make the new IdentityStore system work with your own database.
my database's User table is called tblMember an ...
0
votes
0answers
22 views
Asp.Net 4 Form Authentication issue
I've a strange issue with a .NET 4.0 website published on IIS6.
It implements the Forms Authentication, and in my Web.Config I've something like:
<authentication mode="Forms">
<forms ...
0
votes
1answer
15 views
SqlMembershipProvider - How do I log my user is after validating their credentials?
I'm using SqlMembershipProvider to handle user/role/profile info. I need to be able to validate the user credentials and then log the user in. I think I am doing this incorrectly because name is ...
2
votes
1answer
39 views
Request fails for photo upload Phonegap with Forms Authentication
We are developing a PhoneGap application where in we have photo upload functionality. If I enable FormsAuthentication in WebApi the photo upload fails. So we found that it was failing because ...
-1
votes
0answers
13 views
Using Forms Authentication with ASP.NET Empty Web Application
I am using ASP.NET Empty Web Application for WCF Data Services and would like to implement forms authentication via AJAX without using MVC or ASPX.
How can I do that?