public Response copy(Session destSession, String sourceWorkspace, String sourcePath, String destPath)
{
try
{
Workspace destWorkspace = destSession.getWorkspace();
destWorkspace.copy(sourceWorkspace, sourcePath, destPath);
// If the source resource was successfully moved
// to a pre-existing destination resource.
if (itemExisted)
{