howto get user and machine information of client computer

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

  1. #1

    Default howto get user and machine information of client computer

    Hi there,

    in a webapplication in a company where i have two seperate
    domains, without any trust relation i need the following.

    on the first domain (the backoffice) the users use a
    webapplication to see transaction on a database in the
    second domain. I can make user accounts on the second
    domain, but I need (for logging and tracing reasons) the
    username and machinename of the first domain.

    To get this i think i need some javascript to get local
    information. Does someone know how to get this?

    Thanks!
    best regards

    Gert Jan
    Gert Jan Guest

  2. Similar Questions and Discussions

    1. Howto Basic user authenication?
      I'd like to setup basic password protection for a small flex app I'm creating. Can anyone point me in the direction of a tutorial?
    2. multiple computer names on one machine
      I've heared it's possible to give a machine multiple computer names by changing something in the local registry of that machine. Does someone knows...
    3. HOWTO: Send Secure Data To Client Using SSL
      I've sent private data back to the IIS by implementing the web page reference to HTTPS, but how can secure data be sent to the client computer over...
    4. help: howto to make the machine secure!!
      Hallo folks, I'm about to loose my nerves because the data center where my server is running is cut off the network once again because the...
    5. HowTo: pass data from server to client??
      Hello, I want to setup a webservice. But before lauching the client webpage I'd like to fill up the clients menu with data from the server. So I...
  3. #2

    Default howto get user and machine information of client computer

    You'll only get the username and password of the user if
    you force them to authenticate, which they can only do if
    you are setup to use something other than anonymous
    access. The best solution in this situation for me has
    been to simply add the Domain Users or whichever group
    from the user's domain to a group on the local machine.
    I then use integrated authentication using their domain
    as the authenticator. This is a logistical and security
    mess that may be 1. Not allowed in your environment 2. A
    little too complex of a solution. Unforunately, the only
    other solution is to require the users to programatically
    login and you storing a database of valid
    usernames\passwords. I know this seems like it's not a
    solution but it really is your best 3 options.
    >-----Original Message-----
    >Hi there,
    >
    >in a webapplication in a company where i have two
    seperate
    >domains, without any trust relation i need the following.
    >
    >on the first domain (the backoffice) the users use a
    >webapplication to see transaction on a database in the
    >second domain. I can make user accounts on the second
    >domain, but I need (for logging and tracing reasons) the
    >username and machinename of the first domain.
    >
    >To get this i think i need some javascript to get local
    >information. Does someone know how to get this?
    >
    >Thanks!
    >best regards
    >
    >Gert Jan
    >.
    >
    Keith 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