Creates my own authentication service?

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

  1. #1

    Default Creates my own authentication service?

    Hi guys,
    I would like to develop my own authentication service and to use it in
    several projects. Also, my service should implement windows, forms,
    sql Server or LDAP authentication.
    My first thought was to use the factory pattern to choose "on the fly"
    the appropriate authentication mode (you just have to change the line
    in the config fileā? What do you think about this kind of approach?

    Thanks for the answers
    Cyril
    cyril Guest

  2. Similar Questions and Discussions

    1. XML Web Service Authentication
      Hi, I need to build Web Service that allows me to create some methods that are not public and other that are public. I need something like...
    2. SSL Web Service Proxy Authentication
      After running the following code i get the error. An unhandled exception of type 'System.NotSupportedException' occurred in system.dll...
    3. web service wants proxy authentication
      I have a web service running on my PC that I want to access from a Pocket PC (Compact Framework) connected to my machine using ActiveSync. I can...
    4. Web Service & authentication
      Probably you need to give the account which is used by ASP.NET/IIS more rights (probably this is the ASPNET account). Alternativly you could change...
    5. UI that calls Web Service creates reentrance. Bug ?
      Create a Form. Drop a List Box. Add items to the listbox. Observe ListBox.SelectedIndexChange Create a Web Service with a method that does some fake...
  3. #2

    Default Creates my own authentication service?

    This is a solid standard approach. Take into
    consideration though that not all SQL Server databases
    will be the same, and that each solution will handle
    roles and permissions differently. More importantly,
    don't forget you might encounter combinations where you
    authenticate off of a domain but need to cross reference
    user account information in SQL Server about that user.
    The safest approach is to create a shell and customize as
    needed. No two projects tend to be alike unless you're
    working from a single organization with a single approach
    for authentication.

    Good luck!
    >-----Original Message-----
    >Hi guys,
    >I would like to develop my own authentication service
    and to use it in
    >several projects. Also, my service should implement
    windows, forms,
    >sql Server or LDAP authentication.
    >My first thought was to use the factory pattern to
    choose "on the fly"
    >the appropriate authentication mode (you just have to
    change the line
    >in the config fileā? What do you think about this kind
    of approach?
    >
    >Thanks for the answers
    >Cyril
    >.
    >
    Keith 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