Is there a known way to run the PROPFIND method wi...
# cfml-general
d
Is there a known way to run the PROPFIND method with CFHTTP? I've done this: <cfhttp url="https://example.com/webdav/" method="PROPFIND"> <cfhttpparam type="header" name="Depth" value="1"> <cfhttpparam type="xml" value='<d:propfind xmlns:d="DAV:"><dallprop/&gt;&lt;/dpropfind>'> </cfhttp> But I get HTTP Method PROPFIND not supported. Thanks!
p
Yea not supported method; https://cfdocs.org/cfhttp
May need to write up some custom java to handle what you need there.
1
d
The current plan is a cfexecute on curl
👍🏻 1
👍 1
a
You may be able to use https://github.com/foundeo/bolthttp I seem to recall Pete wrote that as you couldn't do
PATCH
at the time in ACF