Sardine version: 5.8
Java 1.8
(relevant for any dependency overwrites?)
Spring Boot 2.1.2 project
Tomcat9.0.14
I can connect to my Server (Nextcloud) via Sardine.
Also the executed put-call has an effect to the server, as it places the expected…
Referencing to this thread Using webdav on Android
It is possible to use the Sardine lib ( http://code.google.com/p/sardine/) in combination with the httpclientandroidlib ( http://code.google.com/p/httpclientandroidlib/).
But I keep getting a…
I am using below java class which uses sardine , i am getting only resources or zip files list in the directory, what should i use to download zip files?
package com.download;
import java.util.List;
import org.mule.api.MuleEventContext;
import…
I'm trying to add com.github.sardine library and build my app with it.
It fails with the following error
Error:(3, 28) error: package org.apache.tools.ant does not exist
Solution is needed.
I am writing a file synchronization client (in Java 1.6) that uses Sardine:
https://code.google.com/p/sardine/
When Sardine loses connection to the server (ie. network outage or change from LAN to WiFi), I am unable to reconnect until I completely…
I am trying to access yahoo calendar of a user if his username and password are known. I found a code snippet which uses CalDav api to do the task. Code uses 2 libraries sardine.jar and ical4j.jar. The documentation of that code says that code will…
SardineFactory.begin(username, password);
sardine.exists("http://mydomain.sharepoint.com/TeamSite/Documents");
I thought sardine can login auto but it returns 403 error.
I didn't use sardine and SharePoint Online before.
Remote Authentication in…
I'm working on Webdav client Sardine. I'm unable to create a new file (ex: file.txt) on server using Sardine webclient for Webdav. I created the directory using
sardine.createDirectory(dirPathToCreate);
Is there any way to create a new file using…
i'm trying sardine to make a webdav client, but it doesn't connect to my https server.
in the usageguide say this about ssl http://code.google.com/p/sardine/wiki/UsageGuide#SSL but i dont know how to provide my custom Http client with my keystore.
i…
I am trying to put some custom property in a directory WebDAV, but it is only working with files.
I am using Sardine library with Jackrabbit, example:
public static void main(String[] args) throws IOException {
Sardine sardine =…
I am using Sardine client to move folder in WebDav. It is not working. But if it is file type it is working fine.
sardine.move("http://ip/webdav/kamesh/CloudDrive/test123","http://ip/webdav/kamesh/CloudDrive/Media/kmmm");
Please help me, what I…
I'm trying to fetch events from a CalDAV server using Sardine (and biweekly). Fetching an entire calendar is working for me:
Sardine sardine = SardineFactory.begin();
InputStream is = sardine.get(CALDAV_URL_STRING);
ICalendar iCalendar =…
I am searching for a long time on net. But no use. Please help or try to give some ideas how to achieve this.
1, what's OneDrive WebDAV address?
2, the Sardine-Android library is the best choice for this? Is there other great libraries?
Thanks in…
i am trying to download a file from a webdav server with the Sardine-Android Project Library. I have successfully achieved to iterate through the elements via the DavResource-List.
I read through a lot of other questions but i'm a little bit…
I have a big problem with Sardine on Android. I have download the Sardine library for Android and use it in my project. PUT and GET method works but LIST method don't work and I don't know why.
@Override
protected void onCreate(Bundle…