Ask a Question related to ASP.NET Security, Design and Development.
-
Zen #1
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
-
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... -
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 : :... -
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...... -
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... -
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... -
Joe Kaplan \(MVP - ADSI\) #2
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...on> Hi everyone,
>
> I have the following security issue. I have a ASP.NET application runninglocated> a Server (SERVER_A - XP pro). A certain page needs to show a pictureaccess> on another Server (SERVER_B). Normaly the IIS connects using the local
> ASPNET user account, but SERVER_B don't know this account and deniesbut> to the file. I have tried to add this user account to the second serverconfigure> I don't know the pasword so this attempt failed alsoo. How must i> the security settings to achieve this.
>
> Any help will be highly apreciated.
>
> Kurt
>
>
Joe Kaplan \(MVP - ADSI\) Guest
-
Paul Glavich #3
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...running> 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> on> located> > a Server (SERVER_A - XP pro). A certain page needs to show a picture> access> > 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> but> > to the file. I have tried to add this user account to the second server> configure> > I don't know the pasword so this attempt failed alsoo. How must i>> > the security settings to achieve this.
> >
> > Any help will be highly apreciated.
> >
> > Kurt
> >
> >
>
Paul Glavich Guest



Reply With Quote

