|
Home > Archive > Data Storage > February 2005 > IIS not listing subfoldes, Netapp (?!)
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
IIS not listing subfoldes, Netapp (?!)
|
|
|
| Hi!
I have this strange issue...
My ASP page needs to list the content of specific Netapp folder; the
code is very simple:
set fso = createobject("scripting.filesystemobject")
set folder = fso.GetFolder("\\io\Projekte")
for each fldr in folder.subfolders
wscript.echo "<li>" & fldr.name
next
set fso = nothing
If I execute the code on w2k server everything works fine. If I
execute the code as a WSH/VBS script everything works fine, even on
the windows 2003 server.
But - when I execute the code as ASP code running on windows 2003
server I only get some folders listed. I've checked the permissions
and everything seems to be OK and all folders have same permissions
and there is nothing that distincts folder being shown from one
ermaining unvisible. Kerberos authentication is the only thing that
slips my mind, but I'm rather stuck with this one.
Any ideas?
TIA,
Ammar
| |
| boatgeek 2005-02-28, 5:46 pm |
| I would check the netapp system folder \\devicename\c$\etc\messages and
also the audit log under the log directory also off of etc. If your
being denied permissions, it should appear there. If you don't see
anything, then enable CIFS logging. options cifs.trace_login on.
Also check out this article on Now site
http://now.netapp.com/Knowledgebase...?id=ntapcs13377
|
|
|
|
|