Managing Subscriptions

Wikis > LinkSmart.net > Event Manager > Managing Subscriptions

The LinkSmart Event Manager provides publish/subscribe functionality, i.e., the ability for publishers to send a notification to multiple subscribers while being decoupled from them (in terms of, e.g., not holding direct references to subscribers). The Event Manager is used in any place where there is a potential many-to-many relationship between senders and receivers and where asynchronous communication is desirable.

The Event Manager routes events to subscribed clients and a EventSubscriber.zip assists in interfacing to the Network Manager (e.g., broadcast-, multicast-, or gossiping-based dissemination). It manages persistent subscriptions and publication to subscription matching etc. The Event Manager allows sending and receiving events through the LinkSmart P2P network.

An event message consists of a standardized header section including metadata for routing and management of event messages without requirements for reading the actual content, the payload, of the message. It includes topic definitions, identification etc. The payload of the message can now include any content.  See Events – Content Model for a full description of the event information model.

For set up a subscription, the receiver of events needs to:

  1. Add web service wsdl to Event Manager either by file or direct from the Event Manager.
  2. Implement the call back notification methods and,
  3. Register the subscription with the Event Manager providing the call back address.

For publication of events, the publisher needs to

  1. Add web service WSDL to the Event Manager either by file or direct from the Event Manager.
  2. call the publication methods of the Event Manager.

Add web service WSDL to Event Manager

In ordet to communicate with the Event Manager a web service needs to be added. Either using local WSDL that can be downloaded here: EventManagerWSDL.zip or direct from the Event Manager: http://127.0.0.1:8124/Service/Meta?wsdl, were url and port is set in the Event Manager configuration file.

Setting up Event Subscriptions

Three subscribe methods are available for setting up event subscriptions using XPath based selection mechanisms. They differ in how they express the call-back address of its notification method, it is either a local address (i.e. an endpoint) when a LinkSmart Network Manager is not used, or a persistent (the PID) or dynamic (the HID) address within a LinkSmart virtual network.

public bool subscribeXPath(string xpath, string endpoint, int priority)

public bool subscribeXPathWithHID(string xpath, string HID, int priority)

public bool subscribeXPathWithPID(string xpath, string PID, int priority)

The ‘xpath’ parameter is used to define a filter on which events that will be included in the subscription based on the content of the event, both in terms of event metadata and payload.

Examples:

  • .* wildcard subscription – result in a subscription of all events.
  • //[local-name()=’IoTEntity’ and @about=’000D6F0000D36116′]  – result in a subscription of all events including an IoTEntity element with an @about attribute taking the value ‘000D6F0000D36116′
  • //[local-name()=’IoTProperty’ and @typeof=’TEMPERATURE’])   – result in a subscription of all events including an IoTProperty element with a @typeof attribute taking the value ‘TEMPERATURE’

Note that namespaces are not currently supported in the XPath expression which requires somewhat clumsy XPath expressions using local-name() functions.

The ‘priority’ parameter is used to request higher priority in delivery of event messages where a higher number sets an higher priority. Normally, it can be set to ‘1’.

See Use case – Setting up an Event Subscription using the Network Manager and Event Manager for a detailed example of setting up a subscription in a LinkSmart network.

Unsubscribing

Subscriptions can be cancelled by calling unsubscribe() or clearSubscription() methods. Depending on how the subscription was set up, the corresponding unsubscribe() method should be used to cancel a particular subscription:

public bool unsubscribe(string selection, string endpoint)

public bool unsubscribeWithHID(string selection, string HID)

public bool unsubscribeWithPID(string selection, string PID)

For cancelling all subscriptions by a particular receiver, call the appropriate clearSubscription() methods:

public bool clearSubscriptions(string endpoint)

public bool clearSubscriptionsWithHID(string HID)

public bool clearSubscriptionsWithPID(string PID)

Call back notification method to be implemented by the subscriber

An entity that wants to receive events from the Event Manager must implement a notification method as a Web Service on the provided endpoint or virtual address.

The Web Service method that must be implemented is:

public bool notifyXmlEvent(string eventXmlString)

It is defined in a WSDL that can be downloaded here: EventSubscriber.zip. Note that it also include other legacy methods.

Event publishing method to be called by the publisher

The entity that wants to publish an event via the Event Manager must first create a Event Manager Port Client and call its publishXmlEvent() method. The port client can be found in the WSDL for the Event Manager.

public bool publishXmlEvent(string eventXmlString)