|
I have a web service with Django Framework.
My friend's project is a WIN32 program and also a MS-sql server.
The Win32 program currently has a login system that talks to a MS-sql for authentication.
However, we would like to INTEGRATE this login system...
Started by alex on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If the only thing the WIN32 app uses the MS-SQL Server for is Authentication/Authorization then you could write a new Authentication/Authorization provider that uses a set of Web Services (that you Django Authentication backend that....
|
|
I have implemented authentication systems for webapps several times over the years, but before I do it once more, I thought I'd ask if there's a canned solution I should know about.
Last time I checked, there was no built-in Rails authentication system...
Started by Ethan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you haven't look at the plugin for a while .
Restful-authentication is still the standard.
|
|
Besides what it comes with in 2.0 (the generated aspnetdb.mdf), is there a standard login authorization authentication system for asp.net Internet websites? One that can plug into a website.
Started by johnny on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can use ASP.NET membership with ASP.NET Forms authentication or with the ASP.NET login controls to ....
"the generated authentication in your Web sites.
To implement the membership system, and they cover using aspnet_regsql.exe.
|
Ask your Facebook Friends
|
What is the difference between sql server authentication and windows authentication...Is there any specific situation of using each authentication..Your comments are welcome...?
thanks, sivaram
Started by sivaramakrishna on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Windows Authentication....
Here is a link which might help.
Whereas, SQL Server authentication can be used in all the other type of cases.
Ideally, Windows authentication must be used when working in an Intranet type of an environment.
|
|
This is not the usual question "Is it safe to store plain-text users' passwords?". No, it's not safe, we all know that.
I'm writing a little application that should authenticate against an external system to do some stuff, and the only available authentication...
Started by Dario Solera on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If different users have different third party system credentials, I'd store, and then obscure the key somehow....
It performs all the actions to the system requiring authentication on behalf of the user on the web.config file.
DPAPI key.
|
|
I need to build several Rails applications for one client. I would like to give them all the same user authentication system so that users will not have to remember separate login credentials for each app. These are strictly internal applications. OpenID...
Started by Ethan on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
You could essentially have your own ....
I might set up the authentication application on its own as you describe, and then use ActiveResource in the client applications to access the authentication as a web service.
Sounds reasonable to me.
|
|
I hate to re-invent the wheel so I'm looking for an existing solution to create a simple authentication system for my application. I've experimented for a while with using CardSpace or OpenID inside the application but I can't convince management that...
Started by Workshop Alex on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I've used on different computers would also be unique....
We have a system where users on the network use Windows Authentication so they don't need the authentication, and it saves the users making up new passwords or anything.
String.
|
|
We have started building an asp.net mvc application. Application will consist with one main database with users, projects, common tables etc... and many databases (all with the same structure) with a data relevant to a particular project. Use can have...
Started by rrejc on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
1.) I think that we should support both (username/password and Ppenid) authentication options an integrated version of the InfoCard Selector into its OpenID login system so that you can even accept InfoCards directly, but have it look and....
|
|
Suppose I have a remote system named "remotesystem", and a user account "foouser" on that system.
I know that on my local system, I can generate an SSH key pair as local user "foouser", put the public key in the "/home/foouser/.ssh/authorized_keys" file...
Started by misterbiscuit on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at serverfault):
(PermitRootLogin in sshd_config.
On the remote system is root, make sure that root can ssh.
|
|
In the authentication control I have the following line to mark a user as authenticated in the system (after checking out the password):
FormsAuth.SignIn(userName, rememberMe);
and if I redirect, which is the standard behvaior, everything is ok. But if...
Started by J. Pablo Fernández on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
FormsAuthentication.SetAuthCookie , which according to the docs, sets the authentication cookie to do this, but if you absolutely insist on checking authentication before a redirect, then you could.
|