Mixed mode in SQL server..

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

  1. #1

    Default Mixed mode in SQL server..


    Hi folks,

    Just starting down the ASP.NET route after many years of VB/VBA. Been
    looking at the security stuff and it seems that Forms authentication seems
    to be the most popular route taken and seemingly one of the safer routes.

    The only thing I'm not too happy with is exposing my good old SQL 2K server
    to mixed mode authentication (after a few hack free years of trusted
    connections). Am I right in saying there is no way of being able to
    authenticate users AND map to database roles, except using mixed mode in SQL
    server?

    Cheers...P


    Paul M Guest

  2. Similar Questions and Discussions

    1. #39020 [NEW]: PHP in FastCGI server mode crashes
      From: hugo at leisink dot net Operating system: Debian Linux PHP version: 5.1.6 PHP Bug Type: Reproducible crash Bug...
    2. Difference b/w Flex Mode and Classic Mode
      Hi can anyone explain the difference b/w Flex Mode and Classic mode of serialization tag in gateway-config.xml .? what is the purpose of ...
    3. Newbie - Mixed Mode Security
      Hi NG I am busy planning a new project for a client. This is my first ASP.NET app. This will be an Intranet, therefore I am considering Windows...
    4. Slow login response response on TS 03 in AD mixed mode
      We upgraded our NT 4 domain to an AD mixed until we get rid of the NT 4 BDC;s after completing this upgrade users began complaining about how long...
    5. The Problem with Passive Mode ftp server
      "Alan Po" <alan@alanpro.com> wrote in message news:bfjkgk$q3v$1@hfc.pacific.net.hk... | Dear all | | I have set up a ftp server by using Proftp....
  3. #2

    Default Re: Mixed mode in SQL server..

    Did you use Windows authentication before and it worked? If so, then
    it should still work now. You can map Windows users and groups to SQLS
    database roles. If you're talking about an ASP.NET app, it all depends
    on whether or not you use impersonation (not is preferred). If you use
    a single login from ASP.NET, you can certainly use a Windows account
    for connection but you'd need to roll your own roles at the method
    level to implement role-based security since everyone will be
    connecting through that single login. .NET does support mix-and-match
    in this scenario with WindowsPrincipal and GenericPrincipal objects.

    -- Mary
    MCW Technologies
    [url]http://www.mcwtech.com[/url]

    On Mon, 1 Dec 2003 16:34:52 -0000, "Paul M" <masonp@trials.bham.ac.uk>
    wrote:
    >
    >Hi folks,
    >
    >Just starting down the ASP.NET route after many years of VB/VBA. Been
    >looking at the security stuff and it seems that Forms authentication seems
    >to be the most popular route taken and seemingly one of the safer routes.
    >
    >The only thing I'm not too happy with is exposing my good old SQL 2K server
    >to mixed mode authentication (after a few hack free years of trusted
    >connections). Am I right in saying there is no way of being able to
    >authenticate users AND map to database roles, except using mixed mode in SQL
    >server?
    >
    >Cheers...P
    >
    Mary Chipman 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