I have to maintain a updated list of cameras in my application. When few cameras added and removed frequently from management server how can i always maintain updated list of cameras.
Can i get a event when a camera is added and removed by any chance ?
Yes, you can.
By subscribing to MessageId.Server.ConfigurationChangedIndication you will get an event.
You can see this in use in the ConfigAccessViaSDK sample. - https://doc.developer.milestonesys.com/html/index.html?base=samples/componentsamples/configaccessviasdk/readme.html&tree=tree_2.html
Better to subscrive MessageId.Server.ConfigurationChangedDetailsIndication who rise an event for insert/update/delete camera
Frediano