Active Directory, ASP, & IIS

Ask a Question related to ASP, Design and Development.

  1. #1

    Default Re: Active Directory, ASP, & IIS

    What do you mean? How are you running the ASP application not in IIS?

    Ray at home

    "Lynn" <lynn.shoemake@cts.cendant.com> wrote in message
    news:05e801c3981d$974a7a60$a101280a@phx.gbl...
    > I have an ASP application running on an IIS server that
    > accepts a username, queries Active Directory, & displays
    > information about that user.
    >
    > The application works just fine when ran from the IIS
    > server itself. However, if I run it from anywhere else,
    > it always indicates that the username is not found.

    Ray at Guest

  2. Similar Questions and Discussions

    1. active directory
      Hello, I need to get all the AD information from a user that access a intranet ASP.NET page.Does anyone can tell me how to do it? (the user can't...
    2. trying to get Active Directory with SSL
      I am trying to connect to Active Directory that is using SSL to verify a person's user name and password. <cfldap action='QUERY' ...
    3. Active Directory Search fails ("The directory service is unavailab
      Hi all, I'm having one of those nerve wrecking errors, when trying to perform a simple search in an Active Directory. The objective of the code...
    4. Asp.net and Active Directory Log On To
      Hello, I use Active Directory to authenticate users in my Asp.Net web applications. The problem I'm having is that the user's account are set to...
    5. Active Directory and ASP
      Hey All, This is the senerio: I have 2 domains lets call them "workingdomain.com" and "activedirectorydomain.com". I have an account on the...
  3. #2

    Default Re: Active Directory, ASP, & IIS

    On Tue, 21 Oct 2003 14:52:15 -0700, "Lynn"
    <lynn.shoemake@cts.cendant.com> wrote:
    >I have an ASP application running on an IIS server that
    >accepts a username, queries Active Directory, & displays
    >information about that user.
    >
    >The application works just fine when ran from the IIS
    >server itself. However, if I run it from anywhere else,
    >it always indicates that the username is not found.
    Likely your query tries to run against the local system, not the DC.

    Jeff
    Jeff Cochran Guest

  4. #3

    Default Re: Active Directory, ASP, & IIS

    The LDAP query is running against the DC, not the local
    machine.
    >"Jeff"
    >Likely your query tries to run against the local system,
    >not the DC.
    >
    >
    >>"Lynn"
    >>I have an ASP application running on an IIS server that
    >>accepts a username, queries Active Directory, & displays
    >>information about that user.
    >>
    >>The application works just fine when ran from the IIS
    >>server itself. However, if I run it from anywhere else,
    >>it always indicates that the username is not found.
    Lynn Guest

  5. #4

    Default Re: Active Directory, ASP, & IIS

    Alright, you'll have to post your code then and indicate what error you're
    getting.

    Ray at work

    "Lynn" <lynn.shoemake@cts.cendant.com> wrote in message
    news:0d4501c398b8$e8c4ec90$a601280a@phx.gbl...
    > I AM running the ASP application in IIS. I'm simply
    > accessing it from a different computer, not the server.
    >
    > >"Ray at home"
    > >What do you mean? How are you running the ASP
    > application not in IIS?
    > >
    > >
    > >"Lynn"
    > >> I have an ASP application running on an IIS server that
    > >> accepts a username, queries Active Directory, & displays
    > >> information about that user.
    > >>
    > >> The application works just fine when ran from the IIS
    > >> server itself. However, if I run it from anywhere else,
    > >> it always indicates that the username is not found.

    Ray at Guest

  6. #5

    Default Re: Active Directory, ASP, & IIS

    You'd need to show some code snippets and the full text of the error
    then. As well as any relevant event log entries. Show how you're
    making the connection to AD, as well as the code for the query. Might
    also want to Response.Write the query right after it's created, so you
    can check that it actually is what you think it should be.

    Also, is IIS on a DC? Are the IUSR/IWAM accounts domain accounts?

    Jeff

    On Wed, 22 Oct 2003 09:40:57 -0700, "Lynn"
    <lynn.shoemake@cts.cendant.com> wrote:
    >The LDAP query is running against the DC, not the local
    >machine.
    >
    >>"Jeff"
    >>Likely your query tries to run against the local system,
    >>not the DC.
    >>
    >>
    >>>"Lynn"
    >>>I have an ASP application running on an IIS server that
    >>>accepts a username, queries Active Directory, & displays
    >>>information about that user.
    >>>
    >>>The application works just fine when ran from the IIS
    >>>server itself. However, if I run it from anywhere else,
    >>>it always indicates that the username is not found.
    Jeff Cochran 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