Menu

FakePROPFINDRequests

Adam Tauno Williams

[Clients] WebDAV

Fake PROPFIND Requests

Generic

ALLPROP Requests

curl -u awilliam:fred123 \
    -H 'Depth: 1' \
    -H 'Content-Type: text/xml; charset=utf-8' \
    -X PROPFIND \
    -d '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
        <propfind xmlns="DAV:">
            <allprop/>
        </propfind>' \
    http://coils.wmmi.net/dav/Workflow/Routes/failTest/

EMClient

Initial PROPFIND of the user principal

curl --verbose -u awilliam:fred123 -X PROPFIND -H 'Depth: 0' \
  -d '''<?xml version="1.0" encoding="utf-8"?>
        <D:propfind xmlns:D="DAV:">
          <D:prop>
            <D:displayname />
            <schedule-inbox-URL xmlns="urn:ietf:params:xml:ns:caldav" />
            <schedule-outbox-URL xmlns="urn:ietf:params:xml:ns:caldav" />
            <calendar-user-address-set xmlns="urn:ietf:params:xml:ns:caldav" />
            <default-calendar-URL xmlns="http://icewarp.com/ns/" />
            <default-tasks-URL xmlns="http://icewarp.com/ns/" />
            <default-contacts-URL xmlns="http://icewarp.com/ns/" />
            <calendar-home-set xmlns="urn:ietf:params:xml:ns:caldav" />
            <addressbook-home-set xmlns="urn:ietf:params:xml:ns:carddav" />
          </D:prop>
        </D:propfind>''' \
   http://coils.wmmi.net/dav/Users/23330.vcf

Related

Wiki: Clients
Wiki: EMClient
Wiki: WebDAV

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.