Re: Virtual Directory Detection #2
- From: "Peter Bromberg [C# MVP]" <pbromberg@xxxxxxxxxxxxxxxxxxx>
- Date: Fri, 13 Jan 2006 12:10:02 -0800
I ran your code doing Console.WriteLine on each line of the foreach on a
Windows XP pro machine and here's what I got:
AppIsolated: 0
AppRoot: /LM/W3SVC/1/Root/Aspose.Excel.Demos
AppFriendlyName:
KeyType: IIsWebVirtualDir
Path: C:\Program Files\Aspose\Aspose.Excel\Demos\Aspose.Excel.Demos
AccessFlags: 513
FrontPageWeb: True
AspAllowSessionState: True
AspBufferingOn: True
AspEnableParentPaths: True
AspSessionTimeout: 20
AspScriptTimeout: 90
AspScriptErrorSentToBrowser: True
CacheISAPI: True
AspLogErrorRequests: True
AspExceptionCatchEnable: True
CGITimeout: 300
AspScriptEngineCacheMax: 125
AspMaxDiskTemplateCacheFiles: 1000
AspScriptFileCacheSize: 250
AuthFlags: 5
DirBrowseFlags: 1073741824
DontLog: False
ContentIndexed: True
AppAllowDebugging: True
AppAllowClientDebug: True
AspScriptLanguage: VBScript
AspScriptErrorMessage: An error occurred on the server when processing the
URL.
Please contact the system administrator.
AspDiskTemplateCacheDirectory: C:\WINDOWS\system32\inetsrv\ASP Compiled
Template
s
DefaultDoc: default.aspx,Default.htm,Default.asp
ScriptMaps: System.Object[]
HttpErrors: System.Object[]
CPUCGIEnabled: True
CPUAppEnabled: True
AnonymousPasswordSync: True
AspTrackThreadingModel: False
AspAllowOutOfProcComponents: True
AspEnableAspHtmlFallback: False
AspEnableChunkedEncoding: True
AspEnableTypelibCache: True
AspErrorsToNTLog: False
AspProcessorThreadMax: 25
AspRequestQueueMax: 3000
AspThreadGateEnabled: False
AspThreadGateTimeSlice: 1000
AspThreadGateSleepDelay: 100
AspThreadGateSleepMax: 50
AspThreadGateLoadLow: 50
AspThreadGateLoadHigh: 80
AspQueueTimeout: -1
AspCodepage: 0
AspKeepSessionIDSecure: False
AspEnableApplicationRestart: True
AspQueueConnectionTestTime: 3
AspSessionMax: -1
AspLCID: 2048
AnonymousUserName: IUSR_xxxx
AnonymousUserPass: xxxxxxxxxxx)
Realm: xxxxxx.com
HttpCustomHeaders: X-Powered-By: ASP.NET
--Peter
--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com
"Amos Soma" wrote:
> Peter,
>
> One thing I have learned. If the code below is run on a Windows XP
> Professional box, an exception is thrown. If it's run on a Windows 2003
> Server box, it works correctly.
>
> Amos.
>
> "Amos Soma" <amos_j_soma@xxxxxxxxx> wrote in message
> news:OLgXBEHGGHA.3056@xxxxxxxxxxxxxxxxxxxxxxx
> > Peter,
> >
> > I don't think Chris's code is fine, or I am doing something wrong. Here is
> > a test method I wrote.
> > This method works fine up until the 'path =
> > virtualDirectory.Properties["Path"].Value.ToString()' line.
> > It then crashes. Alos, the 'foreach' statement does not show 'Path' as
> > being a property of 'Properties'.
> >
> > Thanks very much.
> > private void TestVirtualDirectory()
> > {
> >
> > DirectoryEntry virtualDirectory = new
> > System.DirectoryServices.DirectoryEntry("IIS://localhost/W3SVC/1/Root/SDBSClientUpdate");
> > System.DirectoryServices.PropertyCollection collection =
> > virtualDirectory.Properties;
> > string path;
> >
> > foreach(string name in collection.PropertyNames)
> > MessageBox.Show(
> > string.Format("{0}:{1}",name,virtualDirectory.Properties[name].Value.ToString())
> > );
> >
> > path = virtualDirectory.Properties["Path"].Value.ToString();
> > MessageBox.Show(path);
> > }
> >
> >
> > "Peter Bromberg [C# MVP]" <pbromberg@xxxxxxxxxxxxxxxxxxx> wrote in message
> > news:6BB9E2FE-B3CA-4527-BACE-B43A148FF7AE@xxxxxxxxxxxxxxxx
> >> Amos,
> >> Chris's code is just fine. if you are getting and object reference
> >> exception
> >> that's because your method call to DirectoryEntry isn't returning a
> >> DirectoryEntry object.
> >> Check your IIS pathing.
> >> Peter
> >>
> >> --
> >> Co-founder, Eggheadcafe.com developer portal:
> >> http://www.eggheadcafe.com
> >> UnBlog:
> >> http://petesbloggerama.blogspot.com
> >>
> >>
> >>
> >>
> >> "Amos Soma" wrote:
> >>
> >>> Chris,
> >>>
> >>> This causes an 'Object reference not set to an instance of an object'
> >>> error.
> >>> I don't think "Path" is a valid index into Properties.
> >>>
> >>> AMos.
> >>>
> >>> "Chris Priede" <priede@xxxxxxxxx> wrote in message
> >>> news:%23ibsVCGGGHA.2704@xxxxxxxxxxxxxxxxxxxxxxx
> >>> > Amos Soma wrote:
> >>> >> For example, I have the following C# code. It correctly finds the
> >>> >> 'MyVirtualDirectory' virtual directory. Now, what method do I call to
> >>> >> determine what folder 'MyVirtualDirectory' points to? I cannot seem
> >>> >> to find any way to do this.
> >>> >>
> >>> >> DirectoryEntry virtualDirectory = new
> >>> >> System.DirectoryServices.DirectoryEntry("IIS://localhost/W3SVC/1/Root/MyVirtualDirectory");
> >>> >
> >>> > string path = virtualDirectory.Properties["Path"].Value.ToString();
> >>> >
> >>> >
> >>> > --
> >>> > Chris Priede
> >>> >
> >>>
> >>>
> >>>
> >
> >
>
>
>
.
- References:
- Virtual Directory Detection #2
- From: Amos Soma
- Re: Virtual Directory Detection #2
- From: Chris Priede
- Re: Virtual Directory Detection #2
- From: Amos Soma
- Re: Virtual Directory Detection #2
- From: Amos Soma
- Re: Virtual Directory Detection #2
- From: Amos Soma
- Virtual Directory Detection #2
- Prev by Date: Re: Overriding a Control's OnPaint Method
- Next by Date: How to find users executing processes
- Previous by thread: Re: Virtual Directory Detection #2
- Next by thread: Re: Virtual Directory Detection #2
- Index(es):
Relevant Pages
|