G
Guest
What is the correct way to set up a two PC development environment where one
PC (the main PC) runs IIS and Visual Studio 2005, and the 2nd PC runs SQL
Server 2000 ?
We ran into significant problems with security trying to set up this kind of
infrastructure.
We gave the ASPNET user an implicit password, and specified this password in
machine.config:
<processModel autoConfig="true" userName="aspnet" password="---" />
this user has administrative access on the main PC and access to the debug
group.
There is also this setting in web.config:
<identity impersonate="true" userName="aspnet" password="---">
and additionally there is the user that IIS uses for anonymous connections.
The ASPNET user was created as a local user on both PC's with the same
password.
Using this setup, works for local access, but does not allow access to the
PC via a browser from other PC's.
What is the correct configuration for such a setup, and which of the above
is required and which is not?
Thanks.
PC (the main PC) runs IIS and Visual Studio 2005, and the 2nd PC runs SQL
Server 2000 ?
We ran into significant problems with security trying to set up this kind of
infrastructure.
We gave the ASPNET user an implicit password, and specified this password in
machine.config:
<processModel autoConfig="true" userName="aspnet" password="---" />
this user has administrative access on the main PC and access to the debug
group.
There is also this setting in web.config:
<identity impersonate="true" userName="aspnet" password="---">
and additionally there is the user that IIS uses for anonymous connections.
The ASPNET user was created as a local user on both PC's with the same
password.
Using this setup, works for local access, but does not allow access to the
PC via a browser from other PC's.
What is the correct configuration for such a setup, and which of the above
is required and which is not?
Thanks.