all groups > asp.net security > august 2004 > threads for august 22 - 28, 2004
Filter by week: 1 2 3 4 5
authorization different paths and roles
Posted by Matias Woloski at 8/28/2004 6:37:44 PM
I have this authorization config in my web.config
<location path="manager">
<system.web>
<authorization>
<deny users="?" />
<allow roles="admins" />
</authorization>
</system.web>
</location>
<location path="resourcemgr">
<system.web>
... more >>
Windows Authentication with Asp.net and against Active Directory
Posted by Patrick at 8/28/2004 4:21:01 PM
How can i use Windows authentication in IIS against AD.
How will i create a WindowsPrincipal object(with asp.net) in the
Context.User property that is used for providing identity and authorization
services to my application.
How will i use the IsInRole method in WindowsPrincipal to return tru... more >>
Load balancing loses authentication
Posted by jhcorey NO[at]SPAM yahoo.com at 8/27/2004 6:31:50 AM
My intranet ASP.NET web app is set up with Windows authentication and
IIS is set to disallow anonymous access.
The app is in a web farm configuration with two blade servers and
a BigIP F5 switch set with sticky sessions.
When I use the app and refresh the screen, the next thing I do in the... more >>
MD5 conversion problem
Posted by Peter Afonin at 8/26/2004 7:37:01 PM
Hello,
I'm struggling with the string conversion to MD5 which I've never user
before.
I have a string that I need to encode which looks approximately like this:
"pva:0.05:101214:pa7735tH:inv_desc=205308:shp_Email=petera_gudzon.net:lang
=ru:shp_PaymentNo=20040825205308:shp_UserID=pva:shp_P... more >>
issues mixing integrated Windows authentication and anonymous on same application
Posted by developer at 8/26/2004 10:46:59 AM
I'm having issues mixing integrated Windows authentication and anonymous
access on same IIS app.
Basically, any post back event fails (Forms collection empty and control's
event handler never called) on anonymous page when:
1 - user opens an aspx page that requires integrated Windows authent... more >>
ASP.NET with ADirectory role based authentication
Posted by naijacoder naijacoder at 8/25/2004 11:21:57 PM
Hi Everyone,
I have some Questions relating to Active Directory and
Asp.net.
1)I have created a role based authorisation using SQL Server but i want
to use
Active Directory as a datastore now?
2)Now if i want to allow the user to login credentials against the
Active directory and t... more >>
DPAPI and config files
Posted by Dan Amiga at 8/25/2004 12:19:50 PM
Hello. This is about DPAPI and configuration files.
Basically, what I understand is when loading the exe assembly the framework
takes parameters from the config file and loads them.
I want to store THE ENTIRE web.config ( or any other config file ) using
DPAPI.
That is - I want to develop a c... more >>
Disallowing concurrent login using the same user account
Posted by Zeng at 8/25/2004 10:21:56 AM
I would like to prevent someone sharing a login in my .net app but I know
that it would
know that would be difficult so it would be acceptable to prevent concurrent
logins. So here is my current plan, each time a user logins we will create
a unique id (a guid for example) and store it both in t... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Impersonation Stops Language Resources Working
Posted by comedy_limp NO[at]SPAM yahoo.co.uk at 8/25/2004 2:48:23 AM
(This is a repost from the internationalization group where I am getting no joy)
Hi,
My ASP.NET application has internationalised string resources via
satellite assemblies in the usual way. Everything was working fine
and changing culture correctly switched the resources into the
appropria... more >>
running a windows service from asp
Posted by fred at 8/24/2004 5:54:40 AM
I need a asp appli enabled to start/stop a web service
I'm using ServiceController for that, but encounter a
access denied problem when I try to start or stop the
service.
This problem is perfectely normal and well documented.
But I can't solve it.
My asp application ask for Windows au... more >>
DPAPI Enterprise Services Example
Posted by Bill Heckle at 8/24/2004 12:19:01 AM
I am trying to work through the sample from msdn, "How To Use DPAPI (User
Store) from ASP.NET with Enterprise Services". I thought I had everything
configured correctly. I tried to test the service and get the following
error.(Sorry for encluding every line). I am confused as to what setting i... more >>
Return credentials with anonymous authentication?
Posted by Shimon Facterman at 8/23/2004 5:44:39 PM
Hi all,
This is my Scenario:
Have a login page in Application 1 with Anoynoumous authentication.
Using this login page I would like to receive credentials from Active
Directory (using Directoryservices I assume),
and somehow return them back to the client browser as if I made login in a
Wind... more >>
Disallow sharing the same login
Posted by Zeng at 8/23/2004 4:18:42 PM
Hello,
I'm not sure if this is the right newsgroup. I'm wondering if anyone out
there are experienced with solving this problem and can share your opinion
or give me some advice. I'm planning to disallow multiple users of our .net
application to share the same login. How do I do that? Track... more >>
Help with A.D. and ASP.Net
Posted by Reas at 8/22/2004 5:59:02 PM
Hi, I'm trying to validate the user credentials against an Active Directory,
I've seen some demos around but in the enviroment I'm going to be working on,
most users have restrictions that prohibit them to logon to certain
machines/servers, so, my question is, should I have to do something spe... more >>
|