Skip to content
Andreas Tetzner edited this page Oct 19, 2022 · 4 revisions

Abstract

This project contains a very basic WebDAV server that will serve the contents of a single local folder. The only parameters for the server are:

  • The port, to which the server will bind
  • One or more user credentials to authenticate
  • The local folder to serve using WebDAV

Note that this server in its current state is not for productive usage. Instead it is intended as a quick way to set up a WebDAV server when needed, e.g. for testing your WebDAV client library against a server with a well-known and easy to modify state.

How To use as standalone program

Since version 0.1.2 a "fat-jar" version of webdav-embedded-server is available. This version is a JAR file that contains all dependencies required to directly start webdav-embedded-server without further dependencies.

To use this version, download the JAR file with the prefix -fatjar.jar from the Releases page and execute the file with the following command (replace JAR filename if necessary):

java -jar webdav-embedded-server-0.2.1-all.jar

How To use as external library

See:

Clone this wiki locally