all groups > asp.net security > february 2006 > threads for february 22 - 28, 2006
Filter by week: 1 2 3 4
AuthenticateRequest Before or After User has been Authenticated?
Posted by Tyler Carver at 2/28/2006 2:58:28 PM
I'm implementing an HttpModule for authorization. I want to authorize the
user after I know they have been authenticated. The documentation for the
HttpApplication AuthenticateRequest event states:
The AuthenticateRequest event signals that the configured authentication
mechanism has auth... more >>
Custom Profile Provider
Posted by Frijoles at 2/28/2006 9:49:32 AM
I'm working against an Oracle database, trying to implement a custom profile
provider. I have the membership and roles providers working, and in fact I
can get the profile provider to work as well. I'm wondering, however, how
this works logically.
It seems that when I add an new property to... more >>
ASP 2.0 Membership API
Posted by timdennis30 NO[at]SPAM gmail.com at 2/25/2006 4:16:30 PM
I am wondering how create a security framework for all our web
application. Is it possible to create a single forms authenication
(cookieless) setting for multiple web applications and web config
files. For example, I want the security web site on our webserver to
serve as a portal for other s... more >>
ADAM & AzMan with ASP.NET 2.0
Posted by James Coleman at 2/25/2006 9:11:31 AM
After quite some time of troubleshooting, searching the web and posting to
newsgroups, I have finally managed to use the
ActiveDirectoryMembershipProvider and the AuthorizationStoreRoleProvider.
The issue I am running into now however is I can not get the two to work
together. So I can Aut... more >>
Disabling buttons when a form is submitted
Posted by dougloj at 2/23/2006 10:42:15 PM
Hi.
Can anyone tell me the best way to disable a group of buttons on an
asp.net form when the form is submitted?
I know I can't disable the submit button in JavaScript before the form
goes back to the server, because that would prevent the submission from
making it back to the server. I've ... more >>
Proxy auth with default credentials
Posted by kristan.mcdonald NO[at]SPAM googlemail.com at 2/23/2006 6:29:43 AM
Ok, I've managed to get authenticated on my proxy by doing :
System.Net.WebRequest req;
req = System.Net.WebRequest.Create("http://www.mywebsite.com/");
System.Net.WebProxy prx = new
System.Net.WebProxy("http://myproxyserver",true);
System.Net.CredentialCache cache = new System.Net.Credential... more >>
Trust An assembly with .NET framework 2.0
Posted by nectar NO[at]SPAM online.nospam at 2/23/2006 6:15:27 AM
Hi,
I have an ASP.NET web application that requires a signed assembly to be
downloaded from the server to the client. In prior versions of the .NET
framework, I used the .NET Framework configuration wizard to give full trust
to this assembly or any other assembly with the same signature and... more >>
Application Pool without Anonymous Access
Posted by yonido NO[at]SPAM gmail.com at 2/22/2006 11:26:22 PM
Hello
I want to create a WebService which belongs to a custom application
pool & doesnt allow anonymous access.
I created a user Named "TestUser", and added it to the IIS_WPG group.
Then i created a new application pool "TestAppPool" which is run by
TestUser & Created a WebService that runs... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
container name
Posted by nishu at 2/22/2006 3:11:23 AM
hello,
how i can get the key container name for each certificate in the
my personal store
if i create the certificate using makecert.exe then i am able to
explicitly mention certificate key container name but if i have
certificate from the certififying authority how would i get the k... more >>
|