Does DefaultAppPool run with special elevated privilegs on IIS? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T06:05:57Zhttp://stackoverflow.com/feeds/question/975838http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/975838/does-defaultapppool-run-with-special-elevated-privilegs-on-iis5Does DefaultAppPool run with special elevated privilegs on IIS?Leeks and Leaks2009-06-10T14:08:44Z2009-07-22T07:26:31Z
<p>I'm running a piece of code within a web page that queries the IIS metabase using ADSI. The code is as simple as this:</p>
<pre><code> DirectoryEntry iisNode =
new DirectoryEntry("/LM/W3SVC/1/ROOT/MyAspWebsite-1-128886021498831845");
foreach (DirectoryEntry de in iisNode.Parent.Children)
{
System.Console.WriteLine(de.Name);
}
</code></pre>
<p>This works fine when I run the page/site under the DefaultAppPool on IIS7/W2K8. However when I create my own app pool and leave the properties the same as the default app pool, this code fails with the following error:</p>
<pre><code>Caught: System.Runtime.InteropServices.COMException
Failed to parse virtual directory:
/LM/W3SVC/1/ROOT/MyAspWebsite-1-128889542757187500
System.Runtime.InteropServices.COMException (0x80070005): Access is denied.
</code></pre>
<p>What special privileges does the DefaultAppPool have? I don't see any documented. I need this to work in non default app pools, but <em>without</em> giving the entire worker process elevated privileges. I've also tried using the username and password parameters of the DirectoryEntry constructor, by using the Admin on the machine that IIS7 is running on, but that didn't change anything. I'll also note that this works <em>fine</em> on IIS6 and W2K3.</p>
<p>Any help is appreciated.</p>
http://stackoverflow.com/questions/975838/does-defaultapppool-run-with-special-elevated-privilegs-on-iis/984271#9842710Answer by Jeff Martin for Does DefaultAppPool run with special elevated privilegs on IIS?Jeff Martin2009-06-11T23:14:29Z2009-07-02T17:07:49Z<p>I would check the path that you are accessing the directory entry on. Its possible that you may have some conflicting service. Check your event viewer. </p>
<p>This link goes to someone who had a similar problem and found that <a href="http://anubhavg.wordpress.com/2007/09/24/failed-to-initialize-the-appdomainlmw3svc1rootwebsite1/" rel="nofollow">because Skype was running on port 80 it was causing a conflict with the path.</a></p>
<p>But the real answer to your question is "No, there isn't anything special about the default app pool".</p>
http://stackoverflow.com/questions/975838/does-defaultapppool-run-with-special-elevated-privilegs-on-iis/1032622#10326220Answer by smehaffie for Does DefaultAppPool run with special elevated privilegs on IIS?smehaffie2009-06-23T13:34:47Z2009-06-23T13:34:47Z<p>I would check to make sure that the NetWorkServices user has access to the physical directories that it is trying to access. It appears by the error that you are accessing different sites under the one that works and one that does not, is that correct?</p>
<p>As stated by the previous user there is nothing special about the Default AppPool and one you create (unless you change the settings of the custom AppPool. IIS does use the permissions of whatever user is setup to run the AppPool under.</p>
http://stackoverflow.com/questions/975838/does-defaultapppool-run-with-special-elevated-privilegs-on-iis/1042836#10428361Answer by RonnBlack for Does DefaultAppPool run with special elevated privilegs on IIS?RonnBlack2009-06-25T09:19:37Z2009-06-25T09:19:37Z<p>It is a little hard to tell from your description exactly what might be going on but from what I understand you have a setup like this:</p>
<pre><code>DefaultWebSite
|
+-- VirtualDirectory
|
+-- ShowIISMetaData.aspx
</code></pre>
<p>I think the problem is that the page that is supposed to show the IIS MetaData is attempting to
look at the children of its parent (in other words its siblings).</p>
<pre><code>foreach (DirectoryEntry de in iisNode.Parent.Children)
</code></pre>
<p>This will only work if the application pool for the default website and the virtual directory are the same
physical pool. </p>
http://stackoverflow.com/questions/975838/does-defaultapppool-run-with-special-elevated-privilegs-on-iis/1156708#11567080Answer by Anonymous Type for Does DefaultAppPool run with special elevated privilegs on IIS?Anonymous Type2009-07-21T00:26:55Z2009-07-21T00:26:55Z<p>There is some information missing from this issue.
Both accounts are running under the same user account so the behaviour should be the same.
I suggest you try running the code under a vanilla install of IIS, does the problem still occur?</p>
<p>As others have alluded to, if the accounts are the same, its because you have made some modification of the metabase.</p>
http://stackoverflow.com/questions/975838/does-defaultapppool-run-with-special-elevated-privilegs-on-iis/1163613#11636130Answer by wgpubs for Does DefaultAppPool run with special elevated privilegs on IIS?wgpubs2009-07-22T07:26:31Z2009-07-22T07:26:31Z<p>The credentials associated with the app pool will be the one used when attempting to query AD. So if both App pools are running under the same credentials that is not your problem. </p>
<p>Do you have different authentication setting in place in your test sites? If for example, you have integrated selected on one and not another ... that may explain the behavior you're experiencing.</p>