Ask a Question related to ASP.NET Security, Design and Development.
-
Mrunal #1
Accessing ClearCase Mapped Drive using ASP.NET
Hi,
I am trying to access a mapped drive(its a clearcase
mapped drive) using ASP.NET on win2003 server but am
getting error as
Description: An unhandled exception occurred during the
execution of the current web request. Please review the
stack trace for more information about the error and where
it originated in the code.
Exception Details: System.IO.DirectoryNotFoundException:
Could not find a part of the path "Y:\".
Source Error:
Line 26: void AddNodes(String fpath,String sID)
Line 27: {
Line 28: string[] listFiles = AccessFileSystem.GetFiles
(fpath);
And i am able to access the drive using stand alone C# app
running on the same machine
Thanks
Mrunal
Mrunal Guest
-
fwrite() across mapped network drive
I'm trying to write an XML file across a local network on a mapped drive but it seems to be more picky when I do that as opposed to writing it... -
Using a mapped drive for a verity collection?
I am setting up a verity collection but I want to keep the collection on a different server. I've been told that I can map a drive on the server... -
Accessing mapped drive problems...
Hello all, I am trying to have CF5.0 (via cfdirectory) read a directory on another computer. Both the CF server and the other computer are on... -
XP Pro Mapped Network Drive question
I have set everyone up to a mapped network drive with a common, first time logon. I now want everyone to change their password but even though I... -
Mapped drive no longer there after reboot
Subject says it all. I need to remap each time I reboot. Dan -
Ken Schaefer #2
Re: Accessing ClearCase Mapped Drive using ASP.NET
Drives are mapped for the logged on user only.
So, something that's mapped for your user account (which you are running the
WinForms app under) is not mapped for the NT AUTHORITY\Network Service
account.
Assuming that you have an appropriate user account running your ASP.NET app
(ie one that has permissions to remote resources), then you can use a UNC
path instead (\\server\share)
Cheers
Ken
"Mrunal" <mrunal.patel@wipro.com> wrote in message
news:100401c4cb9a$b3875750$a501280a@phx.gbl...> Hi,
> I am trying to access a mapped drive(its a clearcase
> mapped drive) using ASP.NET on win2003 server but am
> getting error as
>
> Description: An unhandled exception occurred during the
> execution of the current web request. Please review the
> stack trace for more information about the error and where
> it originated in the code.
>
> Exception Details: System.IO.DirectoryNotFoundException:
> Could not find a part of the path "Y:\".
>
> Source Error:
>
>
> Line 26: void AddNodes(String fpath,String sID)
> Line 27: {
> Line 28: string[] listFiles = AccessFileSystem.GetFiles
> (fpath);
>
>
> And i am able to access the drive using stand alone C# app
> running on the same machine
> Thanks
> Mrunal
Ken Schaefer Guest



Reply With Quote

