vote up 5 vote down star
1

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:

        DirectoryEntry iisNode = 
        new DirectoryEntry("/LM/W3SVC/1/ROOT/MyAspWebsite-1-128886021498831845");
        foreach (DirectoryEntry de in iisNode.Parent.Children)
        {
            System.Console.WriteLine(de.Name);
        }

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:

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.

What special privileges does the DefaultAppPool have? I don't see any documented. I need this to work in non default app pools, but without 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 fine on IIS6 and W2K3.

Any help is appreciated.

flag

29% accept rate
are you sure that both app pool are running under the same identity? – Kevin Jun 10 at 14:21
Yes, if you look in process explorer, they are both running as NT AUTHORITY\NETWORK SERVICE, and both have an Integrity of "System". If you look at the Security tab under process explorer for the advanced property of both instances of w3wp.exe, they belong to the exact same set of groups with only one difference, the DefaultAppPool is part of the IIS APPPOOL\DefaultAppPool group, and the custom app pool is belonging to IIS APPPOOL\CustomAppPool group. – Leeks and Leaks Jun 10 at 14:56
When you say that you created your own app-pool, are you simply creating a brand new app-pool and adding your existing app to that and it's failing? Or, are you creating an entirely new SITE (and thus, an app on the root perhaps) that is associated to the new app pool? Perhaps the permission issue is because of your reference to Site ID 1 in your path /LM/W3SVC/1/ROOT...? – Aaron Jul 10 at 4:29

5 Answers

vote up 0 vote down

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.

This link goes to someone who had a similar problem and found that because Skype was running on port 80 it was causing a conflict with the path.

But the real answer to your question is "No, there isn't anything special about the default app pool".

link|flag
What do you mean the path that I'm accessing the directory entry on? The path is to the IIS metabase. What do ports have to do with this? The metabase in IIS7 is stored in XML files as I understand. – Leeks and Leaks Jun 12 at 17:36
the link i put in indicated that having something else on port 80 might increment the /1/ that is in your path – Jeff Martin Jun 12 at 19:57
vote up 0 vote down

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?

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.

link|flag
vote up 1 vote down

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:

DefaultWebSite
  |
  +-- VirtualDirectory
        |
        +-- ShowIISMetaData.aspx

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).

foreach (DirectoryEntry de in iisNode.Parent.Children)

This will only work if the application pool for the default website and the virtual directory are the same physical pool.

link|flag
vote up 0 vote down

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?

As others have alluded to, if the accounts are the same, its because you have made some modification of the metabase.

link|flag
vote up 0 vote down

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.

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.