Web folders stopped working

4

1

I've been using web folders (WebDAV) on Windows. When I access the folder, since yesterday I get the following message (before that, it just worked):

Documents in this folder are not available. The folder may have been moved or deleted, or network problems may be preventing a connection to the server.

I add folders this way:

  • My Network Place
  • Double click Add Network Places
  • Next, select the only option, and next
  • Use an "https://domain.nl/folder/" URL (I'm not providing my URL's for privacy and security issues, but I assure they are correct, and have been working in the past, and still work in the browser)

When I do this, I get the following error message:

The folder you entered does not appear to be valid. Please choose another.

I'm using Windows XP. My collegue's computer just works, so it looks like a software or configuration issue. Any thoughts?

doekman

Posted 2009-08-05T08:03:05.430

Reputation: 281

Were there any changes on the server or client? Or maybe in network configuration? What OS is on the server? Are there any spaces (or %20) in the URL? Or any non-standard characters (like, not ASCII, with accent marks, special symbols)? – Kirill Strizhak – 2009-08-06T06:51:59.473

No extended characters or spaces. The server OS? I think my ISP uses some kind of UNIX/Linux, and other server is LiveLink using IIS6, so Windows 2003. I can't think of any changes... – doekman – 2009-08-06T07:08:31.320

Well, if it works fine on your colleagues computer and suddenly stopped working on yours, then the first thing that comes to mind is that you have made some changes on your PC. Any updates/installs/uninstalls/configurations at that time? Even if they would seem to have nothing to do with your problem, try reverting. Second most possible reason: some network re-configuration on your end. Try talking with your admin (if you have one). I've recently had some problems with one of my apps, and wasted half a day troubleshooting only to find out that it was due to router subtle misconfiguration :) – Kirill Strizhak – 2009-08-06T07:21:56.640

Oh, and try connecting to some other web folder, on another server. Just to make sure that the problem is on your end. – Kirill Strizhak – 2009-08-06T07:22:58.230

Answers

0

I just re-installed my notebook, and everything works fine now.

So the solution is not one of the following (summary of other answers):

  • The WebClient service doesn't run or hangs;
  • kb810266: solves extended characters in combination with Office XP;
  • kb888039: solves issues with spaces (%20) in the URL.

doekman

Posted 2009-08-05T08:03:05.430

Reputation: 281

0

There is an entire Microsoft KB article regarding this issue here. However, I have found that a good first step is to re-install the Software Update for Web Folders (I would link but new users only get one hyperlink per post).

The last time I encountered this issue I needed to re-image the machine before WebDAV would work properly again.

anne.baynes

Posted 2009-08-05T08:03:05.430

Reputation:

This issue is about spaces (%20) in the URL, and that is not the case. Also: reinstalling the software http://support.microsoft.com/kb/888039 does not solve the problem either...

– doekman – 2009-08-11T10:17:37.210

0

Go to Start | Run, then type Services.msc to open the services management console. Once there, check the status of the "WebClient" service. If it is stuck in the "starting" or "stopping" status, then there may be something happening during the startup of your computer that is conflicting with the service.

I had a similar problem on my machine and while I did not figure out what the conflict was, an easy workaround was to:

  1. Set the Startup Type of the WebClient service to "Manual".
  2. Download the Windows Resource Kit from Microsoft.
  3. Install the resource kit (or just extract "sleep.exe" from it to your Windows\System32 directory)
  4. Create a text file called "WebClient.bat" in whatever directory you like.
  5. Add the following lines to the WebClient.bat file:

sleep 30

net start webclient

Save the file, then create a shortcut to it under All Programs | Startup

This should create a delayed startup of the WebClient service which will hopefully give whatever other process that is causing a conflict enough time to do its thing before the WebClient service tries to start. You may need to adjust the "sleep" delay depending on the startup speed of your system.

Tim Lara

Posted 2009-08-05T08:03:05.430

Reputation: 775

1The service WebClient was disabeld, so I enabled it. It's running now, but still no go. Same error message. – doekman – 2009-10-08T07:29:07.950