Skip to content

Releases: ITHit/WebDAVServerSamplesJava

4.7.4603

10 Mar 17:24
Compare
Choose a tag to compare
  • 'java: package com.sun.nio.file does not exist' exception is thrown if WebDAV Server samples are running on macOS using Java 9 and later versions and started from IntellijIdea in Debug/Run configuration. Now, this bug is fixed.

4.7.4551

03 Mar 20:42
Compare
Choose a tag to compare
  • Spring Boot WebDAV server sample with file system back-end now supports MS-OFBA authentication. Users are authenticated against Azure Active Directory.
  • Default GET handler page JavaScript and CSS is updated in WebDAV server samples.

4.6.4354

19 Jan 17:44
Compare
Choose a tag to compare
  • Indexing and search did not properly close database connection in samples with Oracle back-end. The sample server run-out of open connections. This bug is now fixed.

4.6.4296

24 Nov 19:16
Compare
Choose a tag to compare
  • DavContext class is provided, implementing thread-safe WebDAV context. The request and response can now be accessed via DavContext.currentRequest() and DavContext.currentResponse() static methods anywhere inside your WebDAV server interfaces implementation. 
  • The following methods are now obsolete and are removed from the Engine: WebDavEngine.setServletRequest(), WebDavEngine.getRequest(), WebDavEngine.getResponse(), WebDavEngine.setResponse().
  • Samples are refactored to read lock-tokens using the DavContext.currentRequest().getClientLockTokens() call, instead of remove the getEngine().getRequest().getClientLockTokens() call.
  • DavRequest and DavResponse classes are moved from com.ithit.webdav.server.http namespace to com.ithit.webdav.server namespace.

4.5.4195

16 Nov 19:47
Compare
Choose a tag to compare
  • Concurrency issues may occur in WebDAV Server SpringBoot samples. The single request instance may be shared between several threads. A new Engine instance is now created per request in SpringBoot samples to avoid concurrency issues.

4.5.4062

25 Jun 06:47
Compare
Choose a tag to compare
  • Unused extended attributes classes are removed from the Spring Boot sample with Oracle back-end.

4.5.3994

27 May 10:34
Compare
Choose a tag to compare
  • If specific properties content were specified in the PROPFIND request, incorrect XML property content was generated. This bug is now fixed.
  • Protocol application download links did not work in WebDAV server samples. This bug is now fixed.
  • Paging is implemented in DeltaV sample.

4.5.3991

26 May 12:31
Compare
Choose a tag to compare
  • Property.getXmlValueRaw() and Property.setXmlValueRaw() incorrectly get and set property value. Now this bug is fixed.
  • WebDAV server samples now store raw, unencoded custom property values. Previously encoded property values were stored.
  • Protocol application and web browser extension callback dialog refactored in WebDAV server samples.
  • Cut, Copy, Paste, and Refresh commands added on a toolbar on MyCustomGetHandlerPage.html in WebDAV server samples.

4.5.3962

19 May 05:33
Compare
Choose a tag to compare
  • Property.getXmlValueRaw() and Property.getXmlValueRaw() methods incorrectly get and update property value. Property outer XML was returned and set instead of property value by these methods. Now, the property raw value is get and set. Property.create() and Propery.createRaw() static methods are provided for properties creation.
  • webdav.rootFolder property from application.properties file in Spring Boot File System WebDAV Server sample is now normalized after reading.

4.5.3910

06 May 10:33
Compare
Choose a tag to compare
  • WebDAV property now supports XML content. Property class now provides a new constructor and getXmlValueRaw()/setXmlValueRaw() methods to set raw XML to be written inside a <prop> tag.