Creating WebDAV Server in Java
-
Creating Class 1 / Class 3 WebDAV Server in Java
Class 1 / Class 3 WebDAV Server provides basic file management features available in every WebDAV server. On a Class 1 / Class 3 server, you can create files, copy, move and deleting files and folders as well as create, read and delete custom propert ...
-
Creating Class 2 / Class 3 WebDAV Server in Java
In addition to features provided by Class 1 / Class 3 WebDAV server, Class 2 / Class 3 WebDAV server supports files and folders locking. Locking is required to protect the item from being modified by other users. Many WebDAV clients such as Microsof ...
-
Upgrading to the latest WebDAV Server Library for Java
Upgrading your WebDAV Server Implementation to IT Hit WebDAV Server Library to v4 Upgrading your WebDAV Server Implementation to IT Hit WebDAV Server Library to v3 Upgrading your WebDAV Server Implementation to IT Hit WebDAV Server Library to v2
-
Making Microsoft Office to Work with WebDAV Server
Microsoft Office can open files from a WebDAV server and save them back to the server without the need to download them to local file system. To achieve this the following conditions must be met: Your WebDAV server must support Class 2. Microsof ...
-
Implementing Microsoft Office Merging in Java WebDAV Server
Microsoft Office can merge changes with updates made by other user(s). Here is how merging works: User1 opens a document for editing. The document is locked for editing by User1. User2 opens same document for editing. As soon as the document is ...
-
Java WebDAV Server Authentication
WebDAV Server Library for Java is independent of authentication schema and does not contain any authentication or authorization code. In your project, you can implement Basic, Digest, NTLM, Kerberos, cookies, URL-authentication, or any other authenti ...
-
Implementing WebDAV Synchronization
IT Hit WebDAV Server Library for Java supports synchronization based on Sync-ID. To implement Sync-ID algorithm your server must be able to return all changes that happened in your storage since provided sync-token, including deleted items. In additi ...
-
Paging Through Folder Children Items
The paging support is available in IT Hit WebDAV Server Library for Java v4.0.2590-beta and later versions. The WebDAV Server Library for Java provides support for paging through the children items and sorting results. The client application can requ ...
-
Creating WebDAV Server With Search Support (DASL), Java
IT Hit WebDAV Server Engine supports WebDAV DASL compliant search. Search Interface To enable search support, you must implement Search interface on folder items that must support search. This interface provides a single method Search.search() that i ...
-
Resumable Upload in Java WebDAV Server
IT Hit Java WebDAV Server provides a reliable mechanism for uploading large files and managing long lasting uploads. The Java WebDAV Server supports PUT requests with Content-Range header, multipart-POST upload as well as it can report how much of th ...
-
Creating Custom Method Handler
Custom method handler is required if you would like to replace original HTTP verb processing performed by WebDAV framework with your own processing or would like to process verbs that are not regulated by WebDAV standard. Usually, you will create a c ...
-
Creating DeltaV WebDAV Server
DeltaV Classes and Interfaces DeltaV server provides the ability to check-out / check-in resources and keeps versions track. To add versioning features, you must implement 3 additional interfaces: VersionableItem, Version and History. The class diagr ...