Initializes a new instance of the
ContextManagementRegistry class.
function contextManagementRegistryTest(ccowContextManagmentService, clientUrl) {
// Create a new ContextManagementRegistry
var contextManagementRegistry = new lt.Ccow.ContextManagementRegistry(ccowContextManagmentService);
// Locate CCOW ContextManager component
var registryData = contextManagementRegistry.locate("CCOW.ContextManager", "1.5", null, clientUrl);
// Show the locate component data
console.log("componentUrl:" + registryData.componentUrl);
console.log("componentParameters:" + registryData.componentParameters);
console.log("site:" + registryData.site);
}