show Children User Event Definition on Root Node ( Federated System )

Goodmorning,

I’m developing a plugin for Federated Milestone Installation.

Mi customer would like to show event that are defined in the Child node on Root Node ( IN the Smart Client in the component MAP ).

I’v finded as example “Sensor monitor”, but work fine in singloa installation ( Not Federata ).

It is possile show Children User Event definiscon on the in Server Root on the map?

I’ve Tried with userDefinedEventFolder Class for read all Children nodes user events definition.

If is a valid way, can you send me some code per implemented this feauture?

If it i’snt non valid way, can you suggest me an alternative way?

UserDefinedEventFolder = userDefinedEventFolder = null;

foreach (var item in _Childrens)

{

VideoOS.Platform.SDK.Environment.AddServer(item, _bid._credentialCache);

VideoOS.Platform.SDK.Environment.(item.FQID);

userDefinedEventFolder = new UserDefinedEventFolder();

break;

}

foreach (var a in userDefinedEventFolder.UserDefinedEvents)

{

lblList.Text += string.Format(@"CreatedDate:{0}, Description:{1}, DisplayName:{2},

Id:{3}, ItemCategory:{4}, Name:{5}, Path:{6},

ServerId.ServerHostname:{7}, Subtype:{8}\n", a.CreatedDate, a.Description, a.DisplayName, a.Id,

a.ItemCategory, a.Name, a.Path, a.ServerId.ServerHostname, a.Subtype);

}

Thanks,

Francesco

There is no support for MFA in MIP Items on Map.

There is the regular support for MFA where you can define a hot zone in your map and this hot zone can point to a sub-map and this sub-map can be a map that has been added to the another site in the MFA.

I do not understand the mix of MIP Items from the Sensor Monitor sample and user-defined events.

Try in the Smart Client to use the help (F1) and search for “Add a hot zone to a map”. Might this help you?