Hi Venkat,
That's not DotCMIS. That's OpenCMIS.
What is the exception?
Florian
Hi,
I am working on a project where we uses DotCMIS. The requirement we
have is
to create a new user using CMIS programatically.
The blow method in DOTCmis throwing an error.
Map<String, Object> properties = new HashMap<String, Object>();
properties.put(PropertyIds.OBJECT_TYPE_ID, "User");
properties.put("cmis:name", “auser”);
properties.put("ot__NAME", “Arnold Userington”);
properties.put("ot__PASSWORD", “1234SRTS=”);
properties.put("ot__STATUS", “ACTIVE”);
properties.put("ot__SECURITY_PROFILE", “Contributor”);
properties.put("ot__CONTRIBUTOR", “TELEMMGLSPLR000000000012”);
ObjectId newID = details.getSession().createDocument(properties,
null, null, VersioningState.NONE);
Regards,
Venkat