asp.net - What account does Server.Execute use in ASP pages? -
on our 2003 servers, have website running using standard iusr
anonymous access.
inside site several virtual directories, pointing same physical directories on local web servers (that way have 1 codebase update when upgrade of our customers).
inside each of these vdirs, created vdir points dfs network share. when set these vdirs, explicitly told them connect as domain user has required security/permissions dfs share.
but every time try load web page, server.execute
on file on dfs share fails.
when turn auditing on dfs directory, see 2 failure audits, both of iusr
account trying make connection dfs share.
why happening when explicitly told vdir connect as specific domain user?
does server.execute
run under different credentials tell site connect remote directory as?
inside each of these vdirs, created vdir points dfs network share. when set these vdirs, explicitly told them connect domain user has required security/permissions dfs share.
this applies file security, , not change account iis impersonates.
by default default application pool uses network service it's security account , impersonates iusr_machinename.
make sure nt authority\network service has full control of mapped folders.
Comments
Post a Comment