Hi,
I am testing creation of objects via the CMIS interface and am repeatedly receiveing a constraint violation error.
The CMIS configuration is set up as follows:
{
"repositories": [
{
"server": "WIN2K12",
"port": 80,
"name": "TEST",
"ssl": false,
"id": "R0",
"description": "Repository Description",
"authentication": [ "basic", "token" ],
"rootFolderId": 1,
"thinClientUrl": "http://[WAURL]"
}
]
}
I have no problem getting correct properties back from a GET request for documents and folders, but when I use Postman to POST a createFolder action (see screenshot) i get the following json returned:
{
"exception": "nameConstraintViolation",
"message": "Name '' constraint violation."
}
It looks like the json body is being ignored - am I going about this the wrong way ?
thanks,
Ian