webdav

looking for a publicly accessable WebDAV sandbox

this: http://test.webdav.org/ seems to claim to be what I want but doesn't seem to work. ...

WebDav connection/authentication with PHP

Okay, so the PHP script exists on serverA. ServerA has php safe-mode ON and WebDAV OFF. I can't change either of these factors. I want a script on serverA to get the user's login/password for another server, which we shall call serverB. ServerB has WebDAV ON. The ultimate goal is that the user will go to the script on ServerA, put in t...

Exchange Web Services vrs WebDAV

What are some good resources for learning Exchange Web Services? I'm familiar with webDAV and was wondering if exchange web services might be better for some integration we do with exchange. ...

Recommended solution for scripting file operations over WebDAV?

I have a task: files available over WebDAV on a remote server (SSL required) must be checked for whether they may have been updated recently, and if so copied to a local folder. There are a number of other actions that need to be performed after they arrive (copied to other folders, processed, etc.). The operating system I'm working from...

Configuring Subversion to use system users/passwords

I'm using Subversion 1.6.1 with Apache, on a Linux machine. The server is running over http, not https. I want to allow people to authenticate using the same login/password that they use to log into the machine via SSH. The SVN manual only explains how to use HTTP Basic Auth and Digest authentication. But with these approaches, I need t...

WebDAV vs. SDK for accessing the Exchange 2003 calendar

I'm trying to figure out how to access the calendar of Exchange 2003 from a remotely hosted ASP.NET/C# page (I only need to read and display calendar appointments/meetings etc.). As I understand it, I'm mainly down to two options - using WebDAV or the Exchange SDK. I have found some good examples of how to use WebDAV, although I've not ...

How to set mailbox delegates in Exchange 2003

I am trying to implement a small windows application in C#.NET which will allow user to quickly set mailbox delegate rights. I am thinking of seperating this from Outlook, so I want to do it directly with exchange server. The exchange server version I am using is 2003. I have done hours of Google search on it and found CDO, CDOEX, can no...

How to access an Exchange 2007 public folder via WebDav?

In Exchange 2003 I could connect via WebDav to a public folder via a URL similar to: https://mail.myserver.com/Public/My%20Public%20Folder/ I'm trying to do the same thing in Exchange 2007 but cannot figure out the proper URL for a public folder. ...

How can I redirect a Lighttpd webdav mount depending on user login

I have enabled the lighttpd mod_webdav module and set up a webdav mount point of http://website.com/webdav using the following lighttpd.conf entry: $["remoteip"] == "www.website.com" { alias.url += ( "/webdav" => "/var/www/htdocs/webdav", ) $HTTP["url"] =~ "^webdav($|/)" { dir-listing.activate = "enable" ...

AllDayEvent timezone Exchange 2003

Hello, I am using WebDav to create an calendar item. I would like to make my item to be an "All day event". However whenever I pass the information to the server, and verify the information in outlook, then the "All day event" checkbox is not checked. For the start and end date I set it to: 2009-05-29T00:00:00.000Z I also set the timezo...

How to use WebDav to match dav:href to Outolook Interop href value

I have previously used webdav to access the sent messages on an exchange 2003 server based on the subject and time and this has worked. I now need to implement another feature which means dragging a message from client outlook (not web access) on to a windows form then querying webdav on exchange to get all the information about this me...

WebDAV in Vista

Does anyone have any experience or tips on how to get WebDAV working in Vista64? I have tried installing KB907306 adding through cmd installing the certificate locally are there any alternatives? ...

Accessing contact's custom properties in a Outlook 2007 form region

We have added a form region to contact details form where there are some winform controls which we have data bound to contact custom properties. There is a separate app which creates contacts in exchange server (2003) for different mailboxes using Web Dav protocol. While creating the contact it creates these custom properties also. When ...

WebDAV query for Exchange

Hi, I am trying to read a public calendar (in public folders) in my Exchange server. I am sending the following query to my Exchange server, and the server replies with 400 - Bad Request. <?xml version=""1.0""?> <g:searchrequest xmlns:g=""DAV:""> <g:sql> SELECT ""urn:schemas:httpmail:subject"", ""urn:schemas...

webdav for wsgi/python?

Hi folks. I want to add WebDAV to whiff. This would be easy if I could find a simple WSGI component that implements WebDAV. I found http://pyfilesync.berlios.de/pyfileserver.html, but it seems to insist on using an external configuration file. I want to control everything via a Python API. Any ideas? Thanks! ...

What is going to overtake FTP and why aren't we using it yet?

Is it just me, or does FTP seem a little archaic? It seems slow and inefficient, and its over 30 years old, not that all old things are bad :) What protocols exist out there that might become successors to FTP? I've used webdav a little, but don't know much about it. Is it faster? More reliable? More secure? Why isn't there widesp...

Jackrabbit webdav checkout folder

Hi all, How to checkout the repositary in the client machine, from the repositary in the server using webdav someone gave idea about using the Get method we can achieve. but if i want to checkout mean what i have to do Thanks, somasekar.t ...

MSDAIPP broken on Vista by Update, missing in Win7Beta

I have some code I am working on that worked just fine until I installed Software Update for Web Folders (KB907306) into Vista SP1. I'm using ADO with the MSDAIPP.DSO provider for acess to WebDAV and FPSE/WEC servers. The same code works fine in a clean XP SP3 install, and worked before this update (but I will re-verify on a clean Vist...

webDAV / PHP / MS Word question

Can someone explain this strange (or normal) behaviour: I've got an Webdav directory. In this folder, I have a word document, called document.doc. When I open Word, en then choose to open file, and fill in the whole URL (http://server/webdav/document.doc), Word will open the document just fine. Changes I make are being saved on save cli...

WebDAV behind a reverse proxy

I have 2 servers. One Reverse proxy on the web and one on a private link serving WebDAV. Booth servers are apache httpd v2. On the proxy I have: ProxyRequests Off <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPass /repo/ http : //share.local/repo/ ProxyPassReverse /repo/ ht...