Documentation for Intellect 4.11.0-4.11.3. Documentation for other versions of Intellect is available too.

Previous page Next page


You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Connection is not lost and events are always received.

General request format:

http://IP-address:port/web2/secure/feed/

Example request:

http://127.0.0.1:8085/web2/secure/feed/

Example response:

<message>
    <action>update</action>
    <objectId>CAM:1</objectId>
    <state>disconnected</state>
</message>
 
<message>
    <action>state</action>
    <objectId>CAM:1</objectId>
    <x>10.0</x>
    <y>123.9</y>
</message>
 
<message>
    <action>state</action>
    <objectId>CAM:1</objectId>
    <state>connected</state>
    <x>300.8</x>
    <y>670</y>
</message>
 
<message>
    <action>state</action>
    <objectId>CAM:1</objectId>
    <x>100</x>
    <y>100</y>
</message>
 
<message>
    <action>ping</action>
</message>

Response parameters:

ParameterDescription
actionType of event. Possible values: create, delete, update.
objectIdid of object that is the source of event (always with update, delete, create).
stateid of a new object state (always with create. If the state has not changed, then there is no update state).
x, yNew coordinates (if changed).
  • No labels