tagged [authentication]

ASP.NET MVC authentication using custom database instead of ASPNETDB?

ASP.NET MVC authentication using custom database instead of ASPNETDB? I already have a `User` table in my primary application database with an email address (which will act as the user name) and a pas...

Web Services authentication - best practices?

Web Services authentication - best practices? We have SOAP web services in production that are relying on SOAP Headers (containing plain client credentials) for the authentication. The WS are used in ...

15 Jan at 12:33

How to allow multiple authentication methods in ASP.NET?

How to allow multiple authentication methods in ASP.NET? I'm building a new ASP.NET MVC application (in C#) and one of the requirements is to create a new database of members. For this, we'd need role...

GMail + C# + Web.Config: Send Mail Works Programmatically, Throws Exception Using Web.Config Values

GMail + C# + Web.Config: Send Mail Works Programmatically, Throws Exception Using Web.Config Values Given the following section in `Web.Config`: ```

How can I get browser to prompt to save password?

How can I get browser to prompt to save password? Hey, I'm working on a web app that has a login dialog that works like this: 1. User clicks "login" 2. Login form HTML is loaded with AJAX and displaye...

6 Mar at 21:48

How do you retrieve a list of logged-in/connected users in .NET?

How do you retrieve a list of logged-in/connected users in .NET? Here's the scenario: You have a Windows server that users remotely connect to via RDP. You want your program (which runs as a service) ...

Should we develop a custom membership provider in this case?

Should we develop a custom membership provider in this case? ## Summary Long story short, we've been tasked with gutting the authentication and authorization parts of a fairly old and bloated asp.net ...

minLength data validation is not working with Auth component for CakePHP

minLength data validation is not working with Auth component for CakePHP Let's say I have a user registration and I'm using the Auth component (/user/register is allowed of course). The problem is if ...

1 May at 07:25

Sign in as different user when using Integrated Windows Authentication

Sign in as different user when using Integrated Windows Authentication I have restricted access to a site by using Integrated Windows Authentication and turning off anonymous access. This way I can th...

4 May at 15:43

Authentication Error when accessing Sharepoint list via web service

Authentication Error when accessing Sharepoint list via web service I wrote a windows service a few months ago that would ping a Sharepoint list using _vti_bin/lists.asmx function GetListItemChanges. ...

can i use google login for my java application?

can i use google login for my java application? Here i want to developed one application using google account login facility and i use google app engine for this any link or any tutorial for this??

How to use authentication cookie from WCF Authentication Service in an ASP.Net MVC application

How to use authentication cookie from WCF Authentication Service in an ASP.Net MVC application Okay, I've had little luck finding any documentation or tutorials for my specific scenario. I have an ASP...

6 Aug at 19:41

Perfectly good PHP/MySQL Login script not working

Perfectly good PHP/MySQL Login script not working Hey guys, I've been bashing my head around for hours now, over this login script. It's the one I always used, and I know it works on my version of MyS...

19 Aug at 20:54

Making a web request to a web page which requires windows authentication

Making a web request to a web page which requires windows authentication I am trying to make a request to a web page using WebRequest class in .net. The url that I am trying to read requires Windows A...

26 Aug at 07:48

CakePHP Auth Component Using 2 Tables

CakePHP Auth Component Using 2 Tables CakePHP Version 1.2.5 I would like a single user to have multiple email addresses. I would like a single user to have a single password. I would like users to log...

27 Aug at 01:40

Thread.CurrentPrincipal claims incorrectly to be anynomous

Thread.CurrentPrincipal claims incorrectly to be anynomous I'm seeing requests on my server that appear to be made by an anynomous client, although I'm certain they were made by an authenticated user ...

How do I customize the Forms Authentication cookie name?

How do I customize the Forms Authentication cookie name? I have 2 websites running on localhost in different ports. As browsers do not differentiate port numbers when sending cookies, my forms authent...

2 Sep at 21:59

How to programatically 'login' a user based on 'remember me' cookie when using j2ee container authentication?

How to programatically 'login' a user based on 'remember me' cookie when using j2ee container authentication? i'm using form based authntication in my WAR. i want to implement a 'remember me' cookie s...

5 Sep at 21:35

Using fiddler with Windows Authentication

Using fiddler with Windows Authentication I am testing some proxy settings for our application but I need to test a proxy that requires Windows Authentication (or network credentials). For testing, I ...

8 Sep at 17:25

What's the difference: Windows Authentication, Passport Authentication and Form Authentication?

What's the difference: Windows Authentication, Passport Authentication and Form Authentication? Just going to start making a web application and was wondering which was better, or at least what are th...

17 Sep at 19:48

WebBrowsing in C# - Libraries, Tools etc. - Anything like Mechanize in Perl?

WebBrowsing in C# - Libraries, Tools etc. - Anything like Mechanize in Perl? Looking for something similar to Mechanize for .NET... If you don't know what Mechanize is.. [http://search.cpan.org/dist/W...

c# check if the user member of a group?

c# check if the user member of a group? I have a code that I use to check if the user is member of the AD, worked perfectly, now I want to add the possibility to check if the user also a member of a g...

Rails Authentication and Authorization without guarantee of browser sessions?

Rails Authentication and Authorization without guarantee of browser sessions? Right now, I am using the RESTful Authentication framework for authorizations with my rails application. This is all well ...

14 Dec at 19:30

Custom forms authentication in MVC

Custom forms authentication in MVC I want to use authentication on my site in order to login to the Admin section. I already have my database schema, I don't want to use the ASP.NET membership tables ...

How to manually set an authenticated user in Spring Security / SpringMVC

How to manually set an authenticated user in Spring Security / SpringMVC After a new user submits a 'New account' form, I want to manually log that user in so they don't have to login on the subsequen...