Ask a Question related to ASP.NET Security, Design and Development.
-
shefali #1
authentication for httphandler
Hi,
I have several httphandlers in a web app. I need to set up a very simple
authentication system for users to access these handlers. The requests to
the handlers come from trusted sources, so something as simple as a username
and password, and maybe some elegant way to change these periodically, and
communicate that to the users would suffice.
What is the best way to do this?
Thanks.
-Shefali
shefali Guest
-
Programatically adding an HTTPHandler
When my custom control is dropped onto a web page at design time, I want an associated HTTPHandler reference to be automatically added to the... -
Authentication condition in custom httphandler
I’m working on an ASP.Net application that uses forms authentication and I could use some help. I need to build some custom HTTPHandlers to... -
How do I create a HttpHandler for a WebService(s)?
Hello: Was excited last month with the options that are opened up by understanding how HttpHandlers work --- works great for my new Image and JS... -
The module 'HTTPHandler' is already in the application and cannot be added again
Can anyone provide some insight on what this problem could be? I have searched the web, read forums, and all the installation documentation for... -
HttpHandler not working :-)
I have a simple HttpHandler //-- using System.Web; namespace Acme { public class SimpleHandler : IHttpHandler { public void... -
Joe Kaplan \(MVP - ADSI\) #2
Re: authentication for httphandler
Any of the built-in authentication mechanisms in ASP.NET will work with your
custom handlers. Windows auth or Forms auth are the obvious choices.
Either one of those can use a username and password.
Joe K.
"shefali" <shefali@discussions.microsoft.com> wrote in message
news:6225FE1B-C59C-4EF8-ACCC-8272476AB18C@microsoft.com...> Hi,
>
> I have several httphandlers in a web app. I need to set up a very simple
> authentication system for users to access these handlers. The requests to
> the handlers come from trusted sources, so something as simple as a
> username
> and password, and maybe some elegant way to change these periodically, and
> communicate that to the users would suffice.
>
> What is the best way to do this?
>
> Thanks.
> -Shefali
Joe Kaplan \(MVP - ADSI\) Guest



Reply With Quote

