Capturing Windows NT authentication for client.

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

  1. #1

    Default Capturing Windows NT authentication for client.

    Hello all.

    I'm trying to convert an application with a SQL Server 2000 back end
    and an Access front-end. The back end is fine. I'm just trying to
    give it a web front-end using ASP.NET. The problem is that since
    Access runs on the client machine, it gathers NT authentication
    information at the client and uses that to access the database. Is it
    possible to capture NT authentication information at the client
    through the browser for an intranet application? If not, can anybody
    suggest an alternative? Thanks.

    --Brad
    [email]btrechak@siebertnet.com[/email]
    Brad Guest

  2. Similar Questions and Discussions

    1. [PHP] Capturing Windows Login Details
      Hi All, I need to capture the username and password used to login to Windows 2000/XP with PHP. Does anybody know how to do this? Many thanks ...
    2. Capturing the CLIENT host name
      I'm using CFMX7 (*fanfare*) Does anyone know a way to capture the CLIENT'S hostname? I know about getting the Server's.
    3. Windows authentication for web service client??
      hi all got a question here, a web service secure mode is set to "windows", on the client side when supplying the credentials, it's like this:...
    4. Capturing a failed login within "windows authentication"
      Is there an event or "something" that happens when I can Log a message (or whatever) when a logon attempt fails when unsing "Windows...
    5. Forms authentication with Windows authentication
      Hi, I have an ASP.NET web site that uses IIS Basic Authentication and accesses an OLAP Server at various stages. The OLAP Server authentication...
  3. #2

    Default Re: Capturing Windows NT authentication for client.

    Not through a browser application, but you could build a Rich Client app
    that uses the browser control and through it pass the info forward.

    Generally browser client apps don't need the security context from the
    client because you can force a single login on the server which will
    authenticate you for the page and all subsequent pages you request on the
    server. If you set your permissions on the ASP.Net pages on the server
    properly you should be able to do what you want albeit with one extra login
    dialog (then again if it's a browser app at some point the user needs to
    login anyway).

    +++ Rick ---

    --

    Rick Strahl
    West Wind Technologies
    [url]http://www.west-wind.com/[/url]
    [url]http://www.west-wind.com/wwHelp[/url]
    ----------------------------------
    Making waves on the Web


    "Brad" <LordBPT@aol.com> wrote in message
    news:fb633ee2.0308111112.6ad94a@posting.google.com ...
    > Hello all.
    >
    > I'm trying to convert an application with a SQL Server 2000 back end
    > and an Access front-end. The back end is fine. I'm just trying to
    > give it a web front-end using ASP.NET. The problem is that since
    > Access runs on the client machine, it gathers NT authentication
    > information at the client and uses that to access the database. Is it
    > possible to capture NT authentication information at the client
    > through the browser for an intranet application? If not, can anybody
    > suggest an alternative? Thanks.
    >
    > --Brad
    > [email]btrechak@siebertnet.com[/email]

    Rick Strahl [MVP] 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