webdav

.Net WebDAV Server

霸气de小男生 提交于 2019-11-28 19:24:02
问题 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 IHttpModule/IHttpHandler might have an opportunity to handle any of the additional WebDAV verbs (i.e. LOCK, OPTIONS, PROFIND, etc.) 回答1: There is no way to configure

WebDAV - Request “Show files in folder”?

社会主义新天地 提交于 2019-11-28 07:33:42
问题 I want to download all *.txt files from a WebDAV share. Is there a request/methode to get a list of files from this folder? I´m new to WebDAV and at the w3.org WebDAV methode definition I don´t found this information. http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.3 回答1: The link you pointed at is not the WebDAV specfication, but the HTTP specification. If you want to list the contents of a directory (collection) you must use the PROPFIND method instead, which should return an XML

Editing MS Office documents from a web application: custom WebDaV implementation or …?

强颜欢笑 提交于 2019-11-28 07:03:16
Following is our setup & requirement: There's a public web application accessible via SSL + Basic Authentication. Most of these applications are in ASP.Net; couple of legacy ones are in classic ASP. Server is Win 2003 / IIS 6.0 This application needs to support online editing of (mostly) MS Office documents (2007 & 2010). The documents themselves are stored in the database, along with the content of the application. The users should be able to open the document via HTML links; the corresponding external Office application (say MS Word) should open the document in edit mode (with exclusive lock

Java WebDAV client side library

我的未来我决定 提交于 2019-11-28 06:49:35
What Java WebDAV client side library could you recommend? Julian Reschke Have you looked at Jackrabbit's ? I've recently created one that is quite easy to use: https://github.com/lookfirst/sardine Brad at Kademi OK I'm a bit late, but you really should check out the milton webdav server project. Its open source (apache2), mature and is actively maintained. Its designed to allow any backend implementation to be hooked up to webdav, and many users have reported implementing it in under 4 hours for existing applications. It supports all the usual webdav stuff like locking, custom properties,

Using webdav on Android

﹥>﹥吖頭↗ 提交于 2019-11-28 02:07:30
问题 I'm trying to make a Webdav Client for Android, and I found different Java APIs: Slide, Jakrabbit and Sardine which seems it's a promising solution. It runs like a charm in a Java Apps, but I encountered problems importing in Android Apps with Jaxb API. Does any body know any solutions, or suggestions to fix my problem? 回答1: The best solution is Sardine, but I'm biased since I wrote it after searching around for a decent webdav solution and found that everything out there was difficult to use

How to create a HTML link which forces MS Word to edit document on webdav server

我只是一个虾纸丫 提交于 2019-11-27 17:38:20
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 that MS Word (and other Office programs) support editing of documents stored on WebDAV server. What I don't know, is how to generate link which will trigger MS Word to download this document by itself. Is it possible? Maybe using some special scheme? As far as I

WebDav client library for iOS [closed]

拈花ヽ惹草 提交于 2019-11-27 12:32:23
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 months ago . Is there any WebDav client implementation for iOS ? 回答1: Have a look at WTclient. 回答2: try WTClient, it's written in objective-c. 回答3: I just started using DZWebDAVClient . It needs AFNetworking to work though. Had no issues setting it up and has a block based API. https://github.com/zwaldowski/DZWebDAVClient

闲话RFC

别说谁变了你拦得住时间么 提交于 2019-11-27 07:07:16
如果你经常去查阅相关的互联网协议,比如: HTTP , MetaWeblog API , ATOM , WebDav , SMTP 。你都会不经意的发现它们都有一个相对的RFC编号,这些编号会对应一个像“ http://tools.ietf.org/html/rfc2616 ”的一个链接页面,这个页面详细说明了该协议的定义规范。通常一个协议都定义都需要比较长的内容,但是通过阅读这些协议本身我们就可以更好,更完全的理解该协议本质和实现方法,这将更有助于我们去实现协议基础上的应用。这组RFC编号具有如此重要的意义,我们也就有必要更多的去了解RFC。 RFC是Request For Comments缩写,它实际上是一个“备忘录”的作用,是由于 IETF 进行管理和发布的一系列以编号排定的文件。这些文件描述了Internet相关的协议的研究,行为意图,实现方法。现行基本的互联网协议都在RFC文件内有详细的说明,比如Http 1.1协议对应的的 RFC2616 。同时RFC也是在不断的丰富和完善中发展,任何人都可以提交自己最新的研究成果成为RFC的一部分,比如 ATOM ,尽管目前还没有成为业界标准主流,它目前还没有办法完全取代RSS 2.0在人们心中的影响,但是它也已经有了自己的RFC编号rfc5023,作为一个开放的发展标准,已经成为 IETF 的建议标准,用于取代相对封闭

Best way to access Exchange using PHP?

◇◆丶佛笑我妖孽 提交于 2019-11-27 06:36:05
I'm writing a CMS application in PHP and one of the requirements is that it must be able to interface with the customer's Exchange server. I've written up this functionality a few times before and have always used WebDAV to do it, but now I'm leaning away from that. I will be running the site on IIS OR Apache (no preference) on Windows server 2008. A few things I would need to do include adding contacts to a given user's address book, sending emails as a given user and running reports on contacts for a user. All of this is pretty easy to do with WebDAV, but if there is a better way that doesn

Editing MS Office documents from a web application: custom WebDaV implementation or …?

有些话、适合烂在心里 提交于 2019-11-27 05:44:22
问题 Following is our setup & requirement: There's a public web application accessible via SSL + Basic Authentication. Most of these applications are in ASP.Net; couple of legacy ones are in classic ASP. Server is Win 2003 / IIS 6.0 This application needs to support online editing of (mostly) MS Office documents (2007 & 2010). The documents themselves are stored in the database, along with the content of the application. The users should be able to open the document via HTML links; the