Check In / Check Out
To GET a file:
boolean success=resource.getMethod("/slide/files/testDir/testFile.xml",new java.io.File("C:\\luanne\\file1.xml"));
Checkout the file:
boolean success=resource.checkoutMethod("/slide/files/testDir/testFile.xml");
PUT the file:
boolean success=resource.putMethod("/slide/files/testDir/testFile.xml",new java.io.File("C:\\luanne\\file1.xml"));
Checkin the file:
boolean resource.checkinMethod("/slide/files/testDir/testFile.xml");
-Luanne Coutinho