-
Notifications
You must be signed in to change notification settings - Fork 36
Description
Hello,
to start, let me thank you for still maintaining your library, we use it time to time it’s a very convenient.
We have tried to use the "createItem" method and we observe a shift between what we expected and what we get.
In your documentation, we have to provide a folderId. The cmis specification says it’s optionnal, so we try to put null value and it works. Ok, that’s fine.
But when we provide a real value (the root folder id of our repository) the request send an objectId data instead of a folderId.
There is what we receive in our server :
cmisaction = > "createItem",
objectId => 2,
propertyId => [...],
propertyValue => [...],
succinct => true
Our server doesn’t understand the submitted objectId parameter.
According to you, is there a mistake in the cmis library or do we have to consider the objectId is the folderId in the server side ?
Thanks for your help.
Wiser