Newbie: Security Questions

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

  1. #1

    Default Newbie: Security Questions

    Hi,

    I posted in dotnet.security and was directed here.

    I am to develop am ASP.NET appplication that will access many different
    databases on different servers

    I have also been given a requirement that the person logged on to the
    computer may not be the user accessing the application.
    All the users will be stored in Windows Accounts on Active Directory.

    So I came to the initial conclusion after some ferreting around that I
    should use Forms based authentication for access to the site. And any
    database connections I make should use specific SQL users that have been set
    up on the servers.

    Is this feasible? Is there a more common way of solving this problem?


    MattC


    MattC Guest

  2. Similar Questions and Discussions

    1. Security Questions
      Sounds more like a job for LiveCycle Policy Server. Aandi Inston
    2. SSI newbie questions
      I never knew about SSI, but it seems pretty easy stuff and too simple in some ways. I've tested it out and it works well, but I wonder is there...
    3. ColdFusion security questions
      Hello All. I did a few searches on this but didn't come up with much so far. I'm hoping someone can point me to some resources or a link or two. ...
    4. AIX Newbie Questions
      I have recently purchased a RS/6000 43P-150 workstation for the purpose of learning AIX 5L.... Q1) Do many use an RS/6000 workstation as their...
    5. Newbie questions....
      I've been researching various ways to create enhanced cds, and I've been told Director would be a good way to go... After messing with the trial for...
  3. #2

    Default RE: Newbie: Security Questions

    First, you can still use Windows based authentication with your scenario. It will just happen that when the person logged onto the machine tries to access the application, and ASP.NET sees that they do not have the permission (after negotiating with the file system), the person will be prompted to enter the correct user name and password information

    To answer your question, it just seems like you want to have a single user in SQL Server that is used to access the data. In SQL Server you would set up the user, then in the connection string you would no longer use Integrated Security; rather, it would be something like "Data Source=myserver; user id=myuser; pwd=password;"
    David Coe, MCP 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