Webdav Plugin for Eclipse 3.4?
How do you get webdav support in eclipse 3.4? The development version of the 3.3 plugin I had been using in 3.3 doesn't seem to work. ...
How do you get webdav support in eclipse 3.4? The development version of the 3.3 plugin I had been using in 3.3 doesn't seem to work. ...
The support of locking will be preferred. ...
For a current project, I was thinking of implementing WebDAV to present a virtual file store that clients can access. I have only done Google research so far but it looks like I can get away with only implementing two methods: GET, PROPFIND I think that this is great. I was just curious though. If I wanted to implement file uploading ...
Hi, I need to have PHP authenticate to an exchange server. Once able to succesfully connect to it, I'll need to write webdav requests in the PHP so I can extract data from the exchange server and use it in a web application. It would be somewhat simple except that the 2003 Exchange server has Forms Based Authentication (FBA) turned on. ...
I am trying to open a user/pass protected [Alfresco] webdav document from a Java applet, using Jacob and COM Automation. I pass "http://usu:pwd@srvs/docu.doc" to Documents.Open, but it seems to ignore the auth information. Is there another way to pass this information or somewhere else to authenticate beforehand? Notes: The document ...
For a current project, I need to allow users to access their files remotely from Windows. I'm looking for a solution with an explorer integration (using Shell Namespace Extensions). I first try using WebDAV and the built-in client in Windows but the client is not of equal quality in all Windows version and adding SSL and/or authenticati...
Microsoft Word uses PROPFIND method and asks for property save-profile-form-location in urn:schemas-microsoft-com:office:office namespace. What is this property? What am I supposed to return for it? Update: I found urn:schemas-microsoft-com:office:office Namespace documentation, but they don't mention this property. ...
I need a WebDAV library that will work on a BlackBerry, hence J2ME. Having a BSD like license (or other license that would allow use in proprietary applications) would be ideal, but if one can't be had for free, a proprietary pay-for one is fine too. ...
This might seem like a basic question and back to Http protocol 101. But I am having difficulty in understanding how Basic Authentication works. I am implementing a windows service and need it to be secure. I would like to obtain the user name and password and authenticate the user to a custom user store. I also want to minimize the n...
I'm using WebDAV redirector to edit a file on a SharePoint repository. It looks like each time I save the file this way, I get a new object that replaces the previous one. This is causing all the version history to be lost. Open file is being done via CreateFile with: filename - Same that is used for Read-Only call to CreateFile (wh...
Hi! On the local machine it is no problem to get the revision number of a subversion repository with svnversion. Now I want to get the revision number from my online repository (WebDAV with Apache2). I tried this: svnversion http://nick:[email protected]/svn/test` In a browser it worked as usual (just to ensure there weren't t...
Hi all, I am looking to implement a WebDAV server in ASP.Net. the app will be deployed to IIS 6. I have seen a few frameworks that provide this functionality, but I can't seem to identify how they're able to accomplish it without (apparently) modifying IIS settings. My specific question is how do I configure IIS and ASP.Net so that a IH...
My Windows client application (written in C#) works with the remote MySQL database deployed on *NIX server. I'm going to add the ability to store files on the server. I was never fond of storing files in DB, so the files will be stored in the file system. The application will need to upload, download, and delete files from server. Any ...
Let's suppose that I have WebDAV-enabled server, where I have bunch of Office documents. I'd like to generate webpage which has link to document such that clicking on the link will open Microsoft Word. Word will in turn download document from WebDAV server, and when user finishes editing document, MS Word will upload it back. I know tha...
We use DIGEST authentication for our WebDAV Access. We observe that Windows clients send each request twice. First request doesn't have Authorization header (and gets 401 response), second request has Authorization header (and usually gets correct response). While user probably cannot see this, it makes whole Webdav access slower then n...
What Java WebDAV client side library could you recommend? ...
I want to give users access to WebDav using Apache, but I want to autenticate them first and give each user access to a specific folder. All authentication must be done against a Django-based database. I can get the Django-authentication working myself, but I need help with the part where I authenticate each user and provide them with a ...
Does anyone have a better code snippet for a trivial Python WebDAV server? The code below (which is cobbled together from some Google search results) appears to work under Python 2.6, but I wonder if someone has something they have used before, a little more tested and complete. I'd prefer a stdlib-only snippet over a third-party packa...
Is there a way to use WebDAV with J2ME (some libraries or manual coding)? I've tried: - javax.microedition.io.HttpConnection, but "SEARCH" method not supported there - javax.microedition.io.SocketConnection with Http request - nothing returns in response Maybe something wrong with my code or HTTP header: String response = ""; Strin...
I am trying to access the Exchange 2007 mail store programmatically using WebDAV. However, for some users I am getting the dreaded error "404 Not found". I am using a url similar to http://server/exchange/usermailbox/. It is working just fine for some users but not for others. What might I be doing wrong? ...