vote up 1 vote down star

And... which is easiest to implement?

flag

58% accept rate
I know I'm not answering your question to the full length but a poll looked like a better idea. – Huppie Sep 18 '08 at 15:05

8 Answers

vote up 3 vote down

OpenID

link|flag
Not exactly the easiest method to implement??? – GateKiller Sep 18 '08 at 15:07
I know... that's where the voting comes in ;-) – Huppie Sep 18 '08 at 17:16
vote up 2 vote down

ASP.NET 2.0 Forms Authentication

Very easy to implement and use, as long as you're working with ASP.NET.

link|flag
Agreed. Form authentication and a SQL table of users :) – GateKiller Sep 18 '08 at 15:04
vote up 1 vote down

ASP.NET Forms Authentication + Open ID. Your basic user is a proprietary one and you can then use your Open ID instead of it.

link|flag
Sounds good, got any links? – tjrobinson Sep 18 '08 at 15:07
It was an internal implementation which used DotNetOpenId. code.google.com/p/dotnetopenid – Omer van Kloeten Sep 18 '08 at 15:17
vote up 1 vote down

Assuming you are using .NET, using the build-in Forms Authentication with the built-in SQL Membership Provider is really easy. Check out the video tutorial at here.

link|flag
vote up 1 vote down

With the Ruby on Rails project I'm currently working on I just dropped in the Restful Authentication and Rails Authorization plugins. It's been a real headache remembering which one handles user login and which one handles user permissions. That aside, the combination has been a real time saver.

I believe there is a way to use OpenIDs with Restful Authentication but I haven't looked into it very much.

Edit: I thought I should note that I modified the Restful Authentication plugin's generated code for the user model to use the email address instead of an account name.

link|flag
vote up 0 vote down

This depends some what on th eend user.

Spring Security / Acegi I tend to use for most of my projects.

I find openId cumbersome for most non techy users. Stack overflow has a unique user base so its perfectly suited to using it.

link|flag
vote up 0 vote down

I would implement my own using their email address as the login. This, in my experience is the "easiest to implement!".

link|flag
vote up 0 vote down

I prefer to keep full control of my logins, so used to write them myself, but got tired of keeping up to date with all the latest security techniques, etc.

Its worth it though if you want to know exactly what's happening, and learn something along the way.

I now use this : http://www.prophpscripts.com/scripts/user-session-pro

which basically does it all for you, and still gives you control.. and it means I don't have to bother keeping it up to date as they do! Pretty cheap to.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.