Hi,
I am using Content server 2010. I am writing java web based application where i am using CS 2010 webservices.
Is it possible to retirive specific type of all nodes without fetch root node or parent node?.
e.g.
Type
EnterpriseWS - root
- Colleges - Folder
- FC - Folder
- Academic Project - Project
- Java - Folder
- Dot Net - Folder
- Wadia - Folder
- Academic Project - Project
- Java - Folder
- Dot Net - Folder
PersonalWS - root
- My Project - Project
- My Java - Folder
- My Dot Net - Folder
My Current approach is
First get "EnterpriseWS" root node & then take its all child recursively & after that collect only Folder type nodes.
& do the same for "PersonalWS" root node
Result - Flat structure
- Colleges - Folder
- FC - Folder
- Java - Folder
- Dot Net - Folder
- Wadia - Folder
- Java - Folder
- Dot Net - Folder
- My Java - Folder
- My Dot Net - Folder
I think this is not correct way & also it will take more time.
Is there any other way to get specific type of nodes without fetching root node?