Skip to content
Adrien Castex edited this page Apr 4, 2015 · 5 revisions

Quick start guide


HTTPServerSettings settings = new HTTPServerSettings(
  "WebDAV Server",
  HTTPCommand.getStandardCommands(),
  StandardResourceManager.class,
  "<my folder>"
);

HTTPServer s = new HTTPServer(1700, settings);
s.run(); // Run the server

Clone this wiki locally