Accessing ClearCase Mapped Drive using ASP.NET

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. Mapped drive no longer there after reboot
      Subject says it all. I need to remap each time I reboot. Dan
  3. #2

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139