all groups > asp.net security > december 2007
searching what groups a user belong from AD but errorThe Kerberos subsystem encountered an error. A service for user protocol request was made
Posted by rote at 12/27/2007 4:01:57 PM
I want users to be able to type a user name in a textox and when they hit
submit displays
groups the user belongs to from the Acive Directory.
the getGroupforUser uses the WindowsIdentity and i have a button even
below.
In the button event below i just want to send the username typed in in t... more >>
connecting to a cifs or windows share on a nas device using a specific username and password
Posted by Carl at 12/27/2007 12:33:30 PM
In ASP.Net, how can we connect to a nas that uses cifs for its file
sharing protocol. Currently we should be able to provide the ip address
or hostname of the nas, the sharename along with any directories to go
directly into that sharename, and the username and password. This
username and ... more >>
asp.net 2.0 security question
Posted by ireallyneedtoknow2007@yahoo.com at 12/20/2007 6:54:27 AM
I am using the following code to provide security to a web page
SecurityIdentifier sid = WindowsIdentity.GetCurrent().User;
NTAccount account = (NTAccount)sid.Translate(typeof(NTAccount));
I then account.ToString().
This works fine in development - I get domain\user as expected.
After publi... more >>
Digest auth in .net 1.1 and Active Directory
Posted by Sevgi at 12/18/2007 2:36:01 AM
Hi,
I've a problem with the AD digest auth. in .net 1.1. In fact I don't have
information about AD and windows authentication. I'm developing a project
which will use digest auth. and user information from AD. When a user try to
open web site, he/she should see logon dialog. After entered r... more >>
Is this configuration element in web.config need internet access?
Posted by pedestrian at 12/14/2007 12:00:05 PM
I have a web.config file for an ASP.NET 2.0 project pages that resided in
Windows Server 2003 IIS 6.0. There's a configuration element which look like:
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
If the IIS server is blocked from the Internet access, will the a... more >>
Logon failure: unknown user name or bad password
Posted by Nam at 12/12/2007 11:04:00 AM
In our ASP.NET 2.0 application, we are using
ActiveDirectoryMembershipProvider that comes with ASP.NET 2.0 and following
the guidance on using it published by the patterns and practices team on MSDN.
Using the above model we create a user into our application by first
searching the user in ... more >>
Windows Groups not working in AzMan
Posted by Timo at 12/10/2007 1:09:00 AM
I'm trying to get the AzMan work with windows groups but for some reason it
doesn't work. When I'm assigning individual windows users to azman roles then
authorization works as expected but when I'm using windows groups then I'm
never authorized to perform any tasks.
I'm doing the authoriza... more >>
Issue using ASP.NET forms authenticationwith frame redirect
Posted by dpomt at 12/9/2007 11:37:00 AM
I am facing an issue using ASP.NET forms authentication.
Scenario:
Machine 1: http://subd1.provider1.com (1)
Frame redirect to http://subd.provider2.com
Machine 2: http://subd2.provider2.com (2)
For both URLs, I am getting the login page.
For (2), I could successfully login and ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Creating a user profile
Posted by NickP at 12/7/2007 10:45:45 AM
Hi there,
I have authentication setup on a web application that I have created
using the standard asp.net login controls.
I would like to extend the profile of users so that I can store an extra
property for each one. So far I have added the following section to my
web.config file,... more >>
Getting windows user-name without domain name
Posted by Patrick at 12/7/2007 5:26:02 AM
With .Net 2 SmartClient published/deployed over ClickOnce over IIS, is there
a property like System.Security.Principal.WindowIdentity.GetCurrent().Name
which would get me the logged on userID (without the DOMAIN\)?
... more >>
Getting a AD user name ...
Posted by David Lozzi at 12/3/2007 11:59:50 AM
Howdy,
I have an ASP.Net 2.0 web application for which all i need to do is grab the
user's login name. Currently, IIS is configured for anonymous access, which
i need to keep. I tried request.servervariables("LOGON_USER") and
REMOTE_USER, both return nothing. If I disable anonymouse securit... more >>
Logout with windows authentication
Posted by Uwe Braunholz at 12/3/2007 9:19:50 AM
Hello,
I was trying to reproduce sharepoints "Sign on as another user"
feature using windows authentication in asp.net 2.0. But this did not
work for me.
The browsers seems to keep the information of the first sign in. the
only solution is to completely close the browser.
How could I force... more >>
|