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

  1. #1

    Default ASPNET users

    Hi everyone,

    I have the following security issue. I have a ASP.NET application running on
    a Server (SERVER_A - XP pro). A certain page needs to show a picture located
    on another Server (SERVER_B). Normaly the IIS connects using the local
    ASPNET user account, but SERVER_B don't know this account and denies access
    to the file. I have tried to add this user account to the second server but
    I don't know the pasword so this attempt failed alsoo. How must i configure
    the security settings to achieve this.

    Any help will be highly apreciated.

    Kurt


    Zen Guest

  2. Similar Questions and Discussions

    1. License.Limit.Exceeded with 4x150 users licence andonly 300 real users
      As indicated by the ongoing discussion, this issue can have different causes - can you describe your application a little bit? How many users are...
    2. License.Limit.Exceeded with 4x150 users licence and only300 real users
      We have 4x150 users licence, set to unlimited bandwith. We get these messages in event viewer: Connection rejected by server. Reason : :...
    3. Enable additional users properties in Active Directory users and Computers
      "Mike Brannigan " <mikebran@online.microsoft.com> wrote in message news:O5qGXY1XEHA.808@tk2msftngp13.phx.gbl......
    4. Restricting ASPNET ACLs without breaking ASPNET (newbie-ish)
      Scenario: We have a library with objects that host Jscript for the execution of complex validation code. This library is being called by an ASP.NET...
    5. Prevent Power Users from Adding New Users
      >Some of the applications on the computer require users to Download NTREGMON and NTFILMON from www.sysinternals.com. Logon as domain user and run...
  3. #2

    Default Re: ASPNET users

    You might consider running your ASP.NET worker process as a domain account
    so that server b can authenticate it's credentials on the network. You
    might also consider putting the code that need to access the file in COM+
    and running that under a domain identity. Also, you might just consider
    accessing the file remotely via HTTP via HttpWebRequest or a Web Service.

    Lots of options.

    Joe K.

    "Zen" <Zen@fake.com> wrote in message
    news:4034d279$0$316$ba620e4c@news.skynet.be...
    > Hi everyone,
    >
    > I have the following security issue. I have a ASP.NET application running
    on
    > a Server (SERVER_A - XP pro). A certain page needs to show a picture
    located
    > on another Server (SERVER_B). Normaly the IIS connects using the local
    > ASPNET user account, but SERVER_B don't know this account and denies
    access
    > to the file. I have tried to add this user account to the second server
    but
    > I don't know the pasword so this attempt failed alsoo. How must i
    configure
    > the security settings to achieve this.
    >
    > Any help will be highly apreciated.
    >
    > Kurt
    >
    >

    Joe Kaplan \(MVP - ADSI\) Guest

  4. #3

    Default Re: ASPNET users

    Or, you could set the ASPNET account to have a specific password in the
    machine.config. Look in the <processModel> element for a 'password' entry.
    Its normally set to AutoGenerate but you can specify a particular password,
    and also create an ASPNET user on server B with the same password and you
    are away. Its just another option, however I would recommend Joe's final
    option, unless you dont mind a bit of a performance hit when accessing a
    COM+ component then you can go with that (seems a bit overkill though).

    --
    - Paul Glavich


    "Joe Kaplan (MVP - ADSI)" <joseph.e.kaplan@removethis.accenture.com> wrote
    in message news:#GGKHNw9DHA.2736@TK2MSFTNGP10.phx.gbl...
    > You might consider running your ASP.NET worker process as a domain account
    > so that server b can authenticate it's credentials on the network. You
    > might also consider putting the code that need to access the file in COM+
    > and running that under a domain identity. Also, you might just consider
    > accessing the file remotely via HTTP via HttpWebRequest or a Web Service.
    >
    > Lots of options.
    >
    > Joe K.
    >
    > "Zen" <Zen@fake.com> wrote in message
    > news:4034d279$0$316$ba620e4c@news.skynet.be...
    > > Hi everyone,
    > >
    > > I have the following security issue. I have a ASP.NET application
    running
    > on
    > > a Server (SERVER_A - XP pro). A certain page needs to show a picture
    > located
    > > on another Server (SERVER_B). Normaly the IIS connects using the local
    > > ASPNET user account, but SERVER_B don't know this account and denies
    > access
    > > to the file. I have tried to add this user account to the second server
    > but
    > > I don't know the pasword so this attempt failed alsoo. How must i
    > configure
    > > the security settings to achieve this.
    > >
    > > Any help will be highly apreciated.
    > >
    > > Kurt
    > >
    > >
    >
    >

    Paul Glavich 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