authentication for httphandler

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. HttpHandler not working :-)
      I have a simple HttpHandler //-- using System.Web; namespace Acme { public class SimpleHandler : IHttpHandler { public void...
  3. #2

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139