webdav

SabreDAV + Nginx + PUT (creates 0 byte file)

本秂侑毒 提交于 2019-12-06 20:56:29
I'm trying to get SabreDAV and Nginx to work but it is creating a ZERO byte file (using Cyberduck as my DAV client). The file gets created but no content (so basically like a touch) The HTML frontend plugin uploads fine so I think the file permissions are OK. I can't seem to figure out how to get debug info out of SabreDAV (without hacking the code) I've tried enabling the http_dav_module (not really sure if this is relevant) sudo nginx -V configure arguments: --prefix=/usr/share/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-client-body-temp-path=/var

How can I upload files to Office365 SharePoint with Perl?

六月ゝ 毕业季﹏ 提交于 2019-12-06 15:35:53
Can someone please advise on uploading files to Office365 SharePoint? I believe this should be done using the DAV protocol, so HTTP::DAV should be right library for that, but how to code it to make it work with Office365 ? Each account hosted with Office365 has a TeamSite website, which hopefully can be accessible with DAV. Please advise. Upload large documents to SharePoint site using WebClient class gives an example of using DAV to upload a document. WebClient oWebClient = new WebClient(); oWebClient.UseDefaultCredentials = true; byte[] bFile = System.IO.File.ReadAllBytes(@"C:\Sundar\WEB315

How do I incorporate WebDAV into my iPhone application?

我只是一个虾纸丫 提交于 2019-12-06 05:47:43
I would like to add WebDAV to my iPhone application. What is the best way / library to enable this? WebDAV is just an extension to HTTP. Thus, you can use any of the existing HTTP APIs available on the iPhone to implement WebDAV, assuming that your needs don't require customization to the request/response beyond that which is supported by the underlying API. There are also a number of Objective-C based WebDAV client APIs. Maybe one of those will work? Hard to say, given the lack of details in your question. I'd start with this particular trail of clues . 来源: https://stackoverflow.com/questions

opening webdav files in Chrome via the Office Authorization plug-in for NPAPI browsers fails for certain files

邮差的信 提交于 2019-12-06 05:35:36
Ok, this is a tricky one because it involves so many variables: a webdav server. I used the webdav .net server: http://www.webdavsystem.com/server browsers: chrome 28.0.1500.95 m, firefox 23, IE 9 the office authorization plug-in for NPAPI browsers. I have MS Office 2010 SP2 14.0.7015.1000 (32-bit). The versions of the plugin dlls are: C:\Program Files (x86)\Microsoft Office\Office14\NPAUTHZ.DLL - 14.0.4730.1010, C:\Program Files (x86)\Microsoft Office\Office14\NPSPWRAP.DLL: 14.0.4761.1000 Using the software from IT Hit, I created a simple C# project with a webdav server that shows files from

Git fails to clone repo from ownCloud's webdav interface

不打扰是莪最后的温柔 提交于 2019-12-06 05:05:15
问题 I am having some personal git repos on my ownCloud. I can clone it from 2 ubuntu machines and a Windows PC by accessing ownClouds webdav url: http://myserver.a/remote.php/webdav/repos/repo.git Recently I installed Arch Linux with git version 1.8.1.5 and it fails with this error message: fatal: http://myserver.a/remote.php/webdav/repos/repo.git/info/refs?service=git-upload-pack not found: did you run git update-server-info on the server? I did add the post-update hook, eventually it works on

Configuring Subversion to use system users/passwords

北城以北 提交于 2019-12-05 18:00:51
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 to maintain a separate list of users, and they can't change their own passwords. I'd prefer to just use the system's users. How do I do this? Is this wise? The question mentions basic/digest auth. First, note that basic/digest auth refers to the protocol between

How to enable WebDAV in Adobe AEM?

人盡茶涼 提交于 2019-12-05 13:55:30
I am trying to access Adobe AEM via WebDAV, however, I cannot get it to work. I am running the out-of-the-box crx-quickstart, so I am using port 4502 and the default workspace. I am using Windows Explorer as the WebDAV client, which I use to connect to Sharepoint without difficulty. These seem to be the only instructions for connecting to AEM via WebDAV. http://dev.day.com/docs/en/crx/current/how_to/webdav_access.html The instructions imply that you just point your WebDAV client at the following URL and you are golden. However, I cannot seem to get it to work. http://localhost:4502/crx

Chrome: Open links to OpenOffice documents on WebDAV directly in OpenOffice

橙三吉。 提交于 2019-12-05 07:01:17
问题 is there any way to open OpenOffice with the URL when I click on the link in Chrome browser? To be a bit more precise: I have a WebDAV folder that contains documents. https://myserver/documents/doc1.odt https://myserver/documents/doc1.odt I can open (and modify and store) these documents via open the file using the open dialog in openoffice with these URLs. But what I really want is to embed these links into my webpage and when I click onto this links I want the document behind it to be

Ubuntu + SVN: Could not open the requested SVN filesystem

若如初见. 提交于 2019-12-05 01:28:17
I'm aware this question has been asked a lot of times. I believe I understand the answers, but I still had no luck. I tried both one repo and multiple repos configurations, having the same issue for both of them. So, with the config I'm interested in: <Location /svn> DAV svn #SVNPath /media/ssd/svn/test SVNParentPath /media/ssd/svn SVNListParentPath On AuthType Basic AuthName "Subversion Repository" AuthUserFile /etc/apache2/dav_svn.passwd Require valid-user </Location> My repository luso@bender:/media/ssd/svn$ ls -lart total 16 drwx------ 7 luso luso 4096 2012-09-15 16:20 .. drwxr-sr-x 6 www

Rails 3, HTTP extensions (WebDAV) and Rack App mounting

若如初见. 提交于 2019-12-04 21:15:40
问题 1 The following is more to point out to the code devs an issue of rails that can be percieved as a flaw. 2 And also me asking some oppinions from people who know better. I want to add WebDAV to my Rails 3 App with Warden authentication. My warden middleware is injected via Devise. http://github.com/chrisroberts/dav4rack http://github.com/hassox/warden http://github.com/plataformatec/devise I cannot mount DAV4Rack handlers from inside rails app (routes), like this: # in config/routes.rb mount