Recently we upgraded from Ektron 8.6 to 9.0 (Ektron CMS400.NET, version: 9.00 SP2 (Build 9.0.0.249)).
I have a code (below) that we use to display links to elements in a taxonomy. In section 8.6, this will display library items if they were added to the taxonomy. Starting with 9.0, it no longer displays library items. It still works for DMS elements and regular pages (all first class materials in Ektron).
private List<ContentData> getTaxonomyItems(long TaxonomyId) { listContentManager = new ContentManager(); criteria = new ContentTaxonomyCriteria(ContentProperty.Id, EkEnumeration.OrderByDirection.Ascending); criteria.PagingInfo = new Ektron.Cms.PagingInfo(400);
(I would just like to tell users to use DMS instead of the library, but we have a security requirement, and I donβt know how I can ensure the security of DMS elements, as we can, by using library elements deleting the webconfig file in the library folder.)
Is this a mistake someone else has experienced? Or a problem with my code (has the API changed in version prior to 9.0)?
Thanks.
source share