我有一个 objectId,我想用 Apache Chemistry PHP Library 更改他的名字(例如)。
我尝试使用化学库提供的 updateProperties 方法......但我看不到变化。发生什么事?
$test = new CMISService($repo_url, $repo_username, $repo_password);
$id = 'ddb6eabd-a862-4e6b-9251-32b6e73300d7'; //existing objectId of the document that his name now is PRUEBAS.
$obj = $test->updateProperties($id, array('cmis:name' => 'PRUEBAS_MODIFIED'));
var_dump($cmis_repo->getObject($obj->id)); // I see that cmis:name continue PRUEBAS instead of PRUEBAS_MODIFIED ¿why?
我可以更改文档的名称吗?
但是我可以完美地更改 cmis:description 属性...为什么 cmis:name 我不能?