all groups > asp.net security > december 2005 > threads for december 22 - 28, 2005
Filter by week: 1 2 3 4 5
ASP.NET 2.0 Profile/Membership/Forms Authentication - Manual Login
Posted by beaudetious at 12/28/2005 11:09:02 PM
I'm working on an ASP.NET 2.0 web app using C# and SQL Server 2000. I've
created a multi-step user profile page using the wizard web control and when
the user clicks on the finish button on the final screen I have code in the
click event on the server that does the following:
- Creates a n... more >>
ASP.NET IMPERSONATION AND ORACLE 8.1.7
Posted by saleryan at 12/28/2005 5:43:22 PM
i'm trying to connect to oracle 8.1.7 in asp.net using windows integrated
security
but i'm always getting a ora 01017 invalid username/password. logon denied
message. my web application is running on iis on windows xp professional.
this is my connection string
This is my connection string: da... more >>
LDAP and SASL
Posted by Amar at 12/28/2005 12:36:04 PM
I am a newbie with enterprise directories. I am trying to write an ASP.NET
application to fetch some data from my university LDAP enterprise directory.
There are 2 types of access allowed to the LDAP server. One is a anonymous
access and another is the access that exists mainly to give privile... more >>
.Net 2.0 Membership
Posted by Daniel Corbett at 12/28/2005 5:51:03 AM
How can I determine reason for the login error which is occuring?
I see no status codes or anything available in the LoginError event.
I have implemented the membership capabilities with some minor
modifications, the biggest being that I am using a different database name
from the standard... more >>
Multiple Users with impersonation using one account
Posted by Jeff at 12/27/2005 12:27:15 PM
Hi All,
I have several intranet applications that use impersonate=true and
anonymous turned off to allow me to check for certain network users to
use the application. Works great.
However, some applications use resources such as the file system for
writing temporary files, or for opening f... more >>
ASP.NET 2.0 Multiple Membership Providers for Authentication
Posted by Daniel at 12/27/2005 7:00:15 AM
Hi,
we are planing two use - if possible - two Membership Providers at the
same time for authentication within the same application.
Short background
Imagine a community page, such as a forum. It comes with its very own
membership provider given to us by our customer. We cannot change tha... more >>
Basic theory question about the ASP.NET Machine account
Posted by B. Chernick at 12/26/2005 12:16:03 PM
Please refresh my memory. I have a fair amount of VB.Net programming
experience but it's mostly Winforms not Webforms.
My question is this: I want to dazzle my boss tomorrow with an interactive
graphics display but the only way I can get this to work is by writing a
temporary image fil... more >>
When exactly Application_AuthenticateRequest event is fired?
Posted by Andrew at 12/23/2005 8:35:03 AM
Hello, friends,
In our forms authentication asp.net app, I used
FormsAuthentication.SetAuthCookie() to authenticate a new registered user
like the follows:
//...already create a new userID from our DB
FormsAuthentication.SetAuthCookie(Request.Form["loginName"], true);
Then I plann... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Membership custom provider - logout function
Posted by Amitai Palmon at 12/22/2005 6:32:06 PM
I am writing a custom Membership provider for ASP.NET
I have derived from the Membership provider and have supplied my own method
that work against my security server.
For login operation, for instance, I implemented the "ValidateUser(name,
password)" function.
I can not, however, find any func... more >>
|