Problem accessing shared folder on remote server

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Problem accessing shared folder on remote server

    I have a CF file that uploads a file (through cffile) to another server. I
    setup the CF service to run under an account which also exists on the other
    server (and has rw rights). I should also mention that the server where CFMX
    6.1 is running is a Windows 2003 server and the other one is Windows 2000 (with
    MS SQL 2000). The weird error I'm running into is accessing this shared folder.
    Seven out of ten times the CF server can't see it. This is the code I'm using:
    \\012580CISSQL.acme.org\XPS_imports\contacts exists?
    <cfoutput>#directoryExists("\\012580CISSQL.acme.or g\XPS_imports\contacts")#</cfo
    utput>

    Why would CF see this shared sometimes but not all the time??

    TIA

    Balance Guest

  2. Similar Questions and Discussions

    1. Accessing remote server
      Hello, I'm trying to access MySQL server version 5.0.22 with the MySQL Administrator version 1.1.9. This MySQL server is running on a remote...
    2. Using Integrated Security for Accessing SQL on Remote Server
      Hello, I am currently trying to use integrated security to access the SQL database for the ASP.NET application (deployed on an intranet) I am...
    3. Accessing a script on a remote server
      I have a script set up on one server which queries the mysql server there and creates html code with the results. How do I access this and include...
    4. access to sql server from shared folder security error
      hi all i generated windows application by vb.net file that connect to sql server . when copy exe file to shared folder and after run it...
    5. Problem in Accessing Shared Folders
      Hi, I have a Windows 2003 Server running as a domain contrller. All clients are Windows 2000 Pro with SP4. There are shares created on the...
  3. #2

    Default Re: Problem accessing shared folder on remote server

    That could be a problem with Windows, not with CF, maybe an intermittent
    network drop. Two things I would try:

    1. Refer to the server by IP address rather than name. That will eliminate any
    name resolution issues as a potential source of the problem.

    2. Set a probe on the CF server to check for a hearbeat on the shared folder.
    A real-time monitor of some sort would be best, but anything (other than CF)
    that can poll the shared should be sufficient. Log the polling for a little
    while and see if the shared folder seems to disappear periodically. That will
    tell you whether CF is the problem or not.



    CFMunster Guest

  4. #3

    Default Re: Problem accessing shared folder on remote server

    I'll try out #1 in a few minutes, but I'm not sure how to go about #2. I guess I could put together an ASP file to check for the shared. Did you have any other ideas?

    Thanks
    Balance Guest

  5. #4

    Default Re: Problem accessing shared folder on remote server

    A third party tool can do this stuff. WhatsUpGold is a popular one. Here's one that has a freeware version:

    [url]http://www.paessler.com/ipcheck/?banner=GoogleIPCOther2[/url]
    CFMunster Guest

  6. #5

    Default Re: Problem accessing shared folder on remote server

    I've copied four files since switching to the IP, so this is a good sign!!

    I think the probe I need is to check the name resolution b/w the CFMX server
    and the db server, if there is such a product out there that checks for this.
    At first glance, these products check whether the servers are up and monitor
    their resource usage.

    Balance 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