1
vote
3answers
38 views
ASP.NET C#: Getting Started with ASP.NET Authentication
I'm developing my first web portal in ASP.NET where I would like to have authentication. I have heard that ASP.NET has quite a big and well-built authentication system, but I've never used it before. …
0
votes
1answer
31 views
ASP.NET sessions and custom authentication
I'm building a web site that will acts as a client to a persistant server process. ASP.NET will communicate with the server using .NET Remoting. The server is used by other clients as well (thick WPF …
0
votes
1answer
15 views
ASP.NET Roles and Permissions
I'm using the ASP.NET/C# Login control and that entire authentication and authorization system.
I set up the roles and have users go to certain pages when they log into the system dependent on their …
1
vote
0answers
23 views
HMAC (hash-based message authentication code, aka data signing) in Mathematica
It seems there's an implementation of HMAC in every language under the sun. (See below.)
And the algorithm is quite straightforward:
http://en.wikipedia.org/wiki/HMAC
Has anyone implemented it in …
2
votes
1answer
34 views
Open id authentication in the same page
I have a requirement where the login page opens up the main page in a popup,
this is how I handled it in normal authentication:
<http>
...
<form-login login-page="/Login.html" …
0
votes
1answer
32 views
Windows user profile seems to be blocking certificate auth on webservice calls
I have a Delphi app that's running on Windows Server 2003. The app communicates with a webservice on another server that is protected by a Cisco ACE XML Gateway requiring a certificate for client …
0
votes
1answer
20 views
Stress/load testing Ruby on Rails apps with Authenticity Tokens
My Ruby on Rails application is mostly contained behind a login page. I'd still like to be able to stress test these pages, as they have some heavy database access.
Sending the username and password …
1
vote
7answers
126 views
How to prevent access of admin pages by knowing the admin page url?
If someone knows my url of the admin page such as www.example.com/admin.php, then they will easily access the page by directly accesing that url. How to restrict this. Please help
0
votes
1answer
20 views
How bad is auto-login feature is on an Authentification System
This question is an open question since it's not bound to a programming language:
Is it a bad idea to provide users an auto-login feature? Why?
I've been reading a couple of papers arguing that …
0
votes
2answers
71 views
Is Facebook an OpenID provider?
Is Facebook an OpenID provider? I know they are an OpenID supporter but do they allow people to authenticate with other sites via OpenID with their Facebook credentials?
0
votes
1answer
53 views
why is use of “new NetworkCredential(username, password)” not working for Basic Authentication to my website (from a WinForms C# app)???
Hi,
I have a website that uses Basic Authentication (username/password).
Why is the following code not working? When I run it the web application takes me to the login controller, whereas I'm …
0
votes
2answers
28 views
App Engine Authentication Error
I have an app hosted by google app engine, and I am having trouble with authentication.
When I login using my admin account and try to access the admin page or members pages, I just get a blank …
0
votes
2answers
29 views
Web services authentication with remote IP
I’m developing a small application that interacts with a web service which authorizes access based on the client IP. When developing on my local machine at home, I am not allow to access the web …
0
votes
2answers
49 views
Asp.net forms authentication
In my web.config I have this:
<system.web>
<authentication mode="Forms">
<forms loginUrl="Login.aspx" protection="All" path="/" timeout="30"/>
</authentication>
…
0
votes
1answer
17 views
HTTP authentication using htaccess/htpasswd …dialogue box comes up twice…
I have a site that has the main path under password protection. I also have a subfolder that have a separate (htaccess/htpasswd) password protection.
For some reason, when I access the subfolder, …
