im trying to access my exchange inbox using webdav and it works from my testing server (windows 2003 64bit, contain MOSS instalation) and not from my production server (windows xp 32bit).
for authentication im using:
ICredentials credentials = CredentialCache.DefaultCredentials;
from my production server im getting:
The remote...
Hi,
I'm working on a WebDAV Application.. I can now connect to an ip, say, http://localhost:9005/MyWeb/ by creating a web folder. I could create and delete the web folder using C# code... I could traverse my web folder thoroughly... Is it possible for me to map this web folder to a new drive (using C#) so that I can access the contents f...
I have a subversion server, providing subversion access via Apache2 and mod_dav_svn
The system works fine and clients can access the repositories with SVN client such as TortoiseSVN etc.
Users can also access HTML renderings of the same URLs.
Can these renderings be over-ridden, or replaced? If so, how would i go about it?
...
We have an application at work that mounts a virtual drive using WebDAV. In the past we had to manually set the following values to work around the defaults used by previous versions of the Windows WebDAV client as discussed in KB 900900.
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters\FileSizeLimitInBytes
HKE...
Is it possible to hyperlink to a WebDAV folder?
That is, can we embed a link in a webapp that opens a url within the same webapp as WebDAV folder, preferably within the same HTTP session? It only needs to work for Internet Explorer.
So far, I have found RFC 4709, which appears to be not implemented by Internet Explorer 8. (Correct?)
I...
I've looked online for ways to do this, and I've found two PHP methods for accesing WebDAV:
http://freshmeat.net/projects/class%5Fwebdav%5Fclient/
This is less than ideal, because it doesn't support WebDAV at a sub-path of the server; it cannot access, say, http://my-dav-server/configuration, only http://my-dav-server
http://php-webda...
We have WebDAV activated on our server. And when we try to make a download of a word file from the server with the content-type "application/msword" a WebDAV authentication popup is shown. I do not want this popup. The file should just be downloaded and opened without
The only way I can avoid this, is giving it content-type "applicatio...
Hey:
I have a web application which has a calendar, and I want to allow that calendar to be sync'd with an Exchange server.
I've written code to create appointments on an Exchange server directly in a user's calendar using webDAV. I save the appointment locations (URLs) so I can update the appointments in outlook if something changes ...
This is my current function below. Its used to create a folder in a document library in SharePoint but using web dav functionality, which is easier than MOSS stuff.
I need to find a way to determine reliably if the folder already exists... Notice now I am relying on that try catch, but this means that ANY protocol exception will not th...
I want to restrict the access of users to SVN repos by branch. The users would be accessing the repo via Apache / WebDAV. It's mostly about commits, I don't really care about the read access too much. Also, it's mostly about avoiding accidents, rather than distrusting users.
Note that I am just about to set up the WebDAV access, i. e. I...
I want to check if a folder exists in sharepoint. But it could be any folder hosted in IIS.
Does Directory.Exists work? If not...
I found this method below, but it only creates the folder, no check to see if it already exists or not, does anyone have some working code to check if the folder exists?:
private bool CreateFolder(string ...
Is there any good browser based WebDAV client? If not, is it possible to make one?
...
Below are 2 code snippets used to check if a folder exists in a SharePoint document library.
The PROPFIND method seems to work, while the other method, using HEAD results in a 401.
Can someone please tell me why? Don't get distracted by the credentials, I've set it to the same in both examples, and it works fine....
Here is the code ...
My web hosting provider lets me access my webspace via WebDAV, so I thought I'd set up a git repository over there just to see what happens. Cloning the repository read-only works just fine, as "git clone http://my.server.com/repo.git" just uses the standard HTTP transport.
Problems arise when I try to use WebDAV, because my user id is...
In my answer to another post in SO (here: http://stackoverflow.com/questions/1948552/sharepoint-2007-how-to-check-if-a-folder-exists-in-a-document-library/2005855#2005855) I had to parse an XML document with structure:
D:multistatus
|--D:response
|----D:propstat
|-------D:prop
|----------D:displayname
|----------D:isFolder
Is it possi...
I'd like to write a small script that implements RFC4709 for OS/X.
I started off by creating an application bundle that registers the application/xml+davmount mimetype and launches a simple python script.
It doesn't make a lot of sense to me to make this a .app bundle, because the application is very short-lived, and it also doesn't se...
I'm in the process of building a DataSnap Server that functions as WebDAV server and I'm trying to read the request headers when using a DSHTTPService and then modify the response headers.
Can anyone point me in the right direction? I've notice the Trace TDSRequest and TDSResponse are ancestors of TDSRequestIndy and TDSResponseIndy and...
I am using Independentsoft's WebDav API to create a calendar appointment. I would like to set the category of the appointment.
In Outlook, I would set the category as indicated here:
How would I assign the category using the WebDav API?
Most other fields are simply properties of the appointment object:
Appointment appt = new Appoi...
Hello. This might be a simple question, but I am at a loss.
I am writing a small SVN web client which uses HTTP requests to Webdav api's on my Apache server.
I have been unsuccessful at finding a way to get Webdav to return a SVN directory listing like "svn list --verbose svn://mysvnrepository.com/somerepostiory/" does..
Because our...
I just recently learned of SVN's auto-versioning feature for WebDAV. Although I understand this is not replacement for proper versioning, with messages documenting change sets, it strikes me as a solid and safe replacement to Dropbox (minus nice GUIs and web pages). However, since commits in auto-versioning are frequent, I'd imagine that...