Accessing files on a different machine

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

  1. #1

    Default Accessing files on a different machine

    I have two machines that are members of the same workgroup (there is
    NO domain server).

    On one machine I have some images that I want to access from a
    webservice that is running on the other machine.

    From Windows Explorer I can view the images, delete them, rename them
    etc.

    But my Web Service always gets a FileNotFound exception when trying to
    open an image.

    What permissions do I need to set up on the machine with the images to
    allow my web service to access the image files.

    Thanks

    RichardF
    RichardF Guest

  2. Similar Questions and Discussions

    1. Urgent: Online files accessing local files Issue
      Hi.. We are working on a online project where we have some 600 MB videos. The complete project is made using flash & HTML.
    2. Save flash media files in other machine
      Hi, I have a doubt and hope someone can help me. My client ask about the possibility of save the flash media files produced by webcams in...
    3. HELP - Can't process .cfm files on local machine
      I am running CFMX 6.0 on Windows 2000 Server, SP4. I installed CF in c:\cfusionmx directory. I have a Outpost firewall enabled. I get this...
    4. Accessing Web application from another Machine
      hi Guys, I hav deployed a .Net Web application in a XP OS server. I am not able to access the web application from a remote machine in the local...
    5. Getting files from a Win 2000 machine to a Windows XP machine
      Hi. I've just bought a machine with Windows XP Pro on it and want tto transfer several thousand files from my Win2000 laptop. The laptop has a LAN...
  3. #2

    Default Re: Accessing files on a different machine

    On Thu, 17 Feb 2005 17:31:27 -0600, RichardF <noone@nowhere.com> wrote:

    ¤ I have two machines that are members of the same workgroup (there is
    ¤ NO domain server).
    ¤
    ¤ On one machine I have some images that I want to access from a
    ¤ webservice that is running on the other machine.
    ¤
    ¤ From Windows Explorer I can view the images, delete them, rename them
    ¤ etc.
    ¤
    ¤ But my Web Service always gets a FileNotFound exception when trying to
    ¤ open an image.
    ¤
    ¤ What permissions do I need to set up on the machine with the images to
    ¤ allow my web service to access the image files.

    If you're using a remote path mapped to a drive letter I doubt that the Web Service can see it. I
    would use a UNC path instead.

    In addition, the identify under which the Web Service is operating, probably the local ASPNET
    account, will need to be mirrored on the remote machine (with the same password) and have access to
    the files in question so that delegation can occur. This scenario assumes you are using Anonymous
    (no) or Basic authentication (w/o impersonation).


    Paul ~~~ [email]pclement@ameritech.net[/email]
    Microsoft MVP (Visual Basic)
    Paul Clement 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