Why to create Folder(Java)?

I want to create Folder by Configuration Platform 7.5,
but always found error message: “No permissions to create an object under this Folder”.
Code is below:
RequestCreateObject requestCreateObject = RequestCreateObject.create();
requestCreateObject.setObjectType(ObjectType.Folder.asInt());
String xml= “” +
“” +
“<name value="PFolder112"/>” +
“<type value="3"/>” +
“” +
“<CSID value="0"/>”+
“<DBID value="101"/>” +
“<type value="7"/>” +
“” +
“<state value="1"/>” +
“<CSID value="0"/><DBID value="190"/><type value="3"/>”+
“” +
“<CSID value="0"/>”+
“<DBID value="2560"/>” +
“<type value="22"/>” +
“” +
“<folderClass value="1"/>” +
“” +
“”;
requestCreateObject.setConfObject(MappingUtil.buildW3cDoc(xml));
Message response = ConfigTemplate.request(requestCreateObject);
logger.warn("response xml is:\n "+response);

//
Would you help me?

Simple xml is ..

String xml =
“” +
“” +


“” +

“” +
“” +
“”;

2 Likes