You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Next code-samle could be extrlemely usefull for some cases:
{{{
Sardine sardine = SardineFactory.begin();
sardine.checkOut("http://yourdavserver.com/adirectory/");
Original author: vasiliij...@googlemail.com (June 09, 2011 22:04:14)
What steps will reproduce the problem?
Extension request only. Since WebDav has already such extension.
See http://www.webdav.org/deltav/protocol/draft-ietf-webdav-versioning-xx.7.htm for details.
Next code-samle could be extrlemely usefull for some cases:
{{{
Sardine sardine = SardineFactory.begin();
sardine.checkOut("http://yourdavserver.com/adirectory/");
List<DavResource> resources = sardine.getResources("http://yourdavserver.com/adirectory/");
for (DavResource res : resources)
{
res.setAttribute(/** whatever **/);
}
resources .addResource("theStringData" ,"TheDataItself");
sardine.checkIn("http://yourdavserver.com/adirectory/");
}}}
For sure this example should be more carefully defined. Here is just a main direction....
Original issue: http://code.google.com/p/sardine/issues/detail?id=100
The text was updated successfully, but these errors were encountered: