Questions tagged [propfind]

14 questions
3
votes
0 answers

How to get same propfind response for each request while listing icloud calendars?

I am listing calendars from icloud using caldav request propfind, I am able to get the calendar collection, but the output differs for each run. The calendar-enabled and current-user-principal properties are missing some time and some time it…
Dhanashri
  • 31
  • 2
2
votes
2 answers

What is PROPFIND request

In the postman, there are multiple request types and I see PROPFIND but do not actually know what are its aspects and usage, just curious if it is useful for future use anyone can explain it in simple terms.
Meeran Khan
  • 147
  • 9
1
vote
0 answers

How can i deny PROPFIND requests for a specific route?

When a propfind request appears I want to return my own error message with status code 404. Currently this error message appears: ActionController::RoutingError (No route matches [PROPFIND] "/ical/12345622d73"):
Raswidr
  • 186
  • 6
1
vote
2 answers

Nginx WebDAV module ignoring CORS headers

I am running WebDAV using Nginx. I have a JS app using it as a storage. The problem is that the WebDAV extension is removing headers that I added using "add_header" in my config. server { # IP, Certificates, fullpath, autoindex ... dav_methods …
katomaso
  • 400
  • 3
  • 10
1
vote
1 answer

WebDAV : Is it possible to only retrieve folders using PropFind?

In WebDAV, is it possible to only retrieve folders using PropFind ? The reason I ask is that looping recursive to all the folders and files on the server takes a lot of time because some folders contain a lot of files. Is there a way to only…
Stef Heyenrath
  • 9,335
  • 12
  • 66
  • 121
0
votes
0 answers

SVN to Git migration failing out with Error (175004)

I'm not sure why but when I'm running the following command on a SVN repo to migrate it to Git, I get the following error: Command: git svn clone --prefix=svn/ --no-metadata --authors-file=authors-transform.txt --stdlayout…
Rashy
  • 893
  • 9
  • 12
0
votes
1 answer

How do I send this specific curl WebDAV PROPFIND command from a terminal?

At this site I found this curl command: curl -i -X PROPFIND http://example.com/webdav/ --upload-file - -H "Depth: 1" < end I change…
0
votes
0 answers

Accessing a UNC share on a web server is causing a WebDAV PROPFIND request

Since a recent web server migration to Windows Server 2019, when someone tries to access files in a UNC share remotely via VPN (programmatically or via File Explorer) , it causes a WebDAV request with the PROPFIND method. The UNC share is not inside…
Rick
  • 1,863
  • 2
  • 19
  • 46
0
votes
2 answers

Getting Exception while calling WebDAV propFindMethod in java

Getting below Exception:: WARN main [DavDocumentBuilderFactory.createFactory] - Secure XML processing is not supported java.lang.AbstractMethodError: javax.xml.parsers.DocumentBuilderFactory.setFeature(Ljava/lang/String;Z)V at…
Noor
  • 41
  • 1
  • 9
0
votes
0 answers

NativeScript + http PROPFIND method in android : is it possible?

I'm working on a contacts app on NativeScript, so I need to connect to a webdav server with PROPFIND method. I'm working on Android. Eveything works on a node project, but in NativeScript I can't manage to get an answer from my PROPFIND request. I…
Loic Dub'
  • 1
  • 1
  • 1
0
votes
1 answer

Webdav with curl vs Javascript

I try to access a Nextcloud server using Webdav. Using curl this works: curl -X PROPFIND -u user:pwd https://nextcloudserver.com/remote.php/dav/files/user Using Javascript this I get a 503 error const url =…
Okilele
  • 85
  • 1
  • 5
0
votes
1 answer

how can i do a PROPFIND method with httpclient on Angular 5?

I have a freenas server with a WEBDAV sharing. I would like to connect my angular backoffice to the nas to get the files list on a directory. After a long research, I didn't find how can I do an http request in angular with a PROPFIND methods.. and…
0
votes
0 answers

PROPFIND fails with curl on Apache

I'm trying to setup a GIT server, authenticated through LDAP. I am using Apache. The GIT client fails when trying to push. git push According to the server logs, the problem is with WebDAV PROPFIND command, which is not authenticated by GIT and…
jcolot
  • 21
  • 5
0
votes
3 answers

transform CURL request to PHP CURL

I've this Curl request : curl.exe -k --proxy-ntlm --proxy-user : --proxy http://proxyurl:80 -E C:\temp\certificat.pem:certifPassword -H depth:1 -X PROPFIND https://www.url.fr/to/webdav/number/folder/ > retour.xml I've to translate it in php script.…
LynxWeb
  • 69
  • 1
  • 9