No notification events generated when changing the hierarchy
SmartConnector Forum
Schneider Electric support forum about SmartConnector applications for integration of other building management systems (BMS) into EcoStruxure Building Operation.
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send InviteCancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Link copied. Please paste this link to share this article on your social media post.
2023-03-2905:19 AM
No notification events generated when changing the hierarchy
Hi,
I'm writing a smart connector plugin and I want to subscribe to hierarchy changes in the node tree on our server. I added subscription for a node like this:
DataAdapter.AddHierarchySubscription(30, new List<EwsCommonDataItem<int>>
{
DataAdapter.ContainerItems.First(x => x.AlternateId == "Buildings") });
and it shows up in the portal, but when I add or remove child nodes in the node called "Buildings", no notifications are added.
If I call GetNotifications in the SOAP api, a new notification is actually created and returned.
Am I missing something critical here? There are no errors in the log, everything seems to be working as it should.