2

Is there any way to get and process the UCM content from a Java class? What I need is to sort a content list based on the metadata field. I can get it from a .jsff page. But I need to iterate dt:contentListTemplateDef with that sorted list. Any information will be very helpful.

Mat
  • 202,337
  • 40
  • 393
  • 406
Tapas Bose
  • 28,796
  • 74
  • 215
  • 331

2 Answers2

2

Have you looked into RIDC? The Remote IDC is available for both 10g and 11G UCM. It allows you to call upon (almost) every service available in UCM from within your custom java application, including searching, sorting, ...

See here for the 11g documentation.

Wivani
  • 2,036
  • 22
  • 28
  • Thanks @Wivani. Can you give me some references from where I can learn how use this RIDC api? I read those documentation but I need to know more like getting metadata information or getting the list of the content type available in UCM etc. – Tapas Bose Dec 10 '11 at 12:42
  • 1
    Personally I've had the chance to learn this at Oracle University (employer paid). It involves wrapping your head about the design of UCM and its use of services all over the place; the hda file-format and htm-tables and so on. I've never found very good documentation about this on the net but there is the book by Brian Huff _Stellent Content Server Development_ which is even a few versions later still a good guide. – Wivani Dec 12 '11 at 12:07
  • 2
    I have links to many RIDC examples on my blog: http://jonathanhult.com/blog/2012/12/ridc-examples/ – Jonathan Hult Mar 12 '14 at 12:14
  • Seems like a great resource. Thanks for sharing – Wivani Mar 17 '14 at 12:22
2

It is also possible to return any query as an RSS feed, JSON or XML.

Tyronomo
  • 2,047
  • 2
  • 15
  • 22