Login using Domain Login ID

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Login using Domain Login ID

    I'd like to get the Domain login ID to use to log into Dreamweaver
    applications. I'd like to log the user into a Dreamweave application (based on
    their Domain Login ID) without requiring the user to enter another user ID and
    password. I don't want to use an environment variable as it would be to easy to
    change the environment variable and wouldn't be secure enough. I'd like to
    know if DreamWeave can provide me with the Domain User ID. I'd also like
    information from users on how they avoid requiring their users to supply a
    user ID and password for each application. I will not be using shared PC's
    where multiple users work under the same login id. Will require users to log in
    using their specific domain user id. Thanks, Lee:)

    Lee Bright Guest

  2. Similar Questions and Discussions

    1. how to obtain the login id and domain in c#.asp
      I am using c#.asp to write an application in which I need to get the login id and domain of the user and verify his/her privileges to use such...
    2. Login issues (two pc domain)
      Hello, Setup = two pcs, one windows 2003 server which is the domain server. 2nd pc is a windxp Pro pc. I changed the password on the account I...
    3. VERY Slow domain login - need help...
      I'm running Server 2003 and all clients log into the domain. Frequently (as in more often than not) it takes over three minutes for the login...
    4. Impersonated login to web service from outside domain
      I'm having trouble connecting to a web service through a web server, when using a client not part of the same domain as the servers. The setup is...
    5. XP Client login to W2K domain problems
      I have a W2K domain server and XP clients. I get an error message on some of the xp machines that there is no trust relationship with the server...
  3. #2

    Default Re: Login using Domain Login ID

    You need to set this restriction on your webserver, create a new application
    in IIS, and require users to use their domain credentials to access the
    application. You just have to turn off allow anonymous access. This does
    however transmit domain username and passwords in clear text.


    Terry Bankert Guest

  4. #3

    Default Re: Login using Domain Login ID

    Not if you select "NT Challenge/Response" (aka "Integrated Windows
    Authentication" depending on your version) as the authentication method.
    The downside is that, at present, only IE can handle that authentication
    method. Of course, if the users are having to be on the domain for the
    site, something tells me browser choice is not a primary concern. :)

    The user name is available in ASP from
    Request.ServerVariables("LOGON_USER"). Don't know about the other
    languages.

    "Terry Bankert" <terry@richbank-studios.com> wrote in message
    news:cv2qob$1re$1@forums.macromedia.com...
    > You need to set this restriction on your webserver, create a new
    application
    > in IIS, and require users to use their domain credentials to access the
    > application. You just have to turn off allow anonymous access. This does
    > however transmit domain username and passwords in clear text.
    >
    >

    CMBergin 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