4 using the delete function on m bus data points, Using the delete function on m-bus data points -16 – Echelon i.LON SmartServer 2.0 User Manual

Page 283

Advertising
background image

i.LON SmartServer 2.0 Programmer’s Reference

16-16

16.4.4

Using the Delete Function on M-Bus Data Points

You can use the Delete function to delete an M-Bus data point on the SmartServer. The Delete
function takes an <Item> element with an MBS_Dp_Cfg type as its input. The <Item> element only
needs to include the M-Bus data point’s <UCPTname> property in the Delete Request as demonstrated
in the following code sample:

Request

<Delete xmlns="http://wsdl.echelon.com/web_services_ns/ilon100/v4.0/message/">
<iLonItem>
<Item

xsi:type="MBS_Dp_Cfg">

<UCPTname>Net/M-Bus Channel/M-Bus Device/VirtFb/MBS3</UCPTname>

</Item>

</iLonItem>
</Delete>

Response

<DeleteResponse xmlns="http://wsdl.echelon.com/web_services_ns/ilon100/v4.0/message/">
<iLonItem >

<UCPTfaultCount>0</UCPTfaultCount>

<Item>
<UCPTname>Net/M-Bus

Channel/M-Bus

Device/VirtFb/MBS3</UCPTname>

</Item>
</iLonItem>
</Delete>

Advertising