Question

I doing a pratical project on JXTA, a Distributed File system. Can we use JXTA CMS Content Management Service in JXSE-2.7 / 2.6? Where can i find the latest CMS jar file which i can use with JXSE-2.7?

I have read the CMS in Mastering JXTA text.

import net.jxta.share.*;
import net.jxta.share.client.*;
Content[] content = cms.getContentManager().getContent();
fileList.removeAll();
for (int i=0; i<content.length; i++) {
    System.out.println(content[i].getContentAdvertisement().getName();
}

can we use these methods cms.getContentManager().getContent() in Content Managemetn Service with JXSE 2.7/ 2.6 ??

Was it helpful?

Solution

I have led the release of JXTA 2.6 and 2.7. No one volunteered to test and maintain CMS. So, I cannot guarantee you that it works. We focussed on correcting fundamental issues/bugs in 2.6 and 2.7.

I would not rely on CMS as it is right now for production. You would need to test it thoroughly first.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top