• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

Help! can't retrieve node by using Weblogic 9.2 CMS (content management)

 
Ranch Hand
Posts: 79
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
All,
I need your help for figuring out my problem now. I'm using weblogic 9.2 now, I put two very simple plain document under BEA Repository. And in my java file, I try to retrieve this two document by using weblogic 9.2's CMS API, the code is straightforward as below:
...
ITypeManager typeMgr = ContentManagerFactory.getTypeManager();
//request is HttpServletRequest
ContentContext ctx = new ContentContext(request);
ISortableFilterablePagedList typeList = typeMgr.getViewableTypes(ctx, "BEA Repository");

But why the typeList is always empty? I should get two types since I have two documents there.

Thanks in advance.

Hai
 
reply
    Bookmark Topic Watch Topic
  • New Topic