| Author |
Weblogic Portal 10.3 CMS
|
Amit Mondal
Greenhorn
Joined: Apr 04, 2007
Posts: 4
|
|
Hi Everybody,
I'm novice in weblogic portal 10.3.And I'm getting problem to update CMS node property using API.I need your help regarding this matter.
And this my code:
---------------------------------------------------------------------------------------
IVersionManager mgr = ContentManagerFactory.getVersionManager();
ContentContext cc = new ContentContext();
Authentication.login("weblogic" , "weblogic" ,request , response);
ISortableFilterablePagedList<Node> result = iSearchManager.search(cc, search);
Iterator<Node> resultIterator = result.iterator();
while (resultIterator.hasNext()) {
Node node = (Node) resultIterator.next();
if(title.equals("CCR")){
ID nodeId = node.getId();
Value value = new Value("Test");
node.getProperty("description").setValue(value);
Property[] properties = node.getProperties();
if(!mgr.isCheckedOut(cc, nodeId)){
mgr.checkOut(cc, nodeId, null);
int wfSatatus = Workflow.PUBLISHED;
VersionableContent versionableContent = new VersionableContent(wfSatatus, "", properties);
mgr.save(cc,node.getObjectClassId(),versionableContent);
mgr.checkIn(cc, nodeId, versionableContent);
}
------------------------------------------------------------------------------------------
Thanks
Amit
|
 |
Marisol Redondo
Greenhorn
Joined: Apr 12, 2012
Posts: 1
|
|
|
Did you find the solution for this problem?.
|
 |
 |
|
|
subject: Weblogic Portal 10.3 CMS
|
|
|