You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- The counter exposes the HTTP endpoint at 8080/tcp and the CoAP endpoint at 5683/udp and they are bound to the host machine (with `-p 8080:8080/tcp -p 5683:5683/udp`).
Copy file name to clipboardExpand all lines: packages/binding-mqtt/README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -300,7 +300,7 @@ Please setup node-wot as described at the [node-wot main page](https://github.co
300
300
- example-mqtt-publish.js: Shows when node-wot acts as a MQTT Client that publishes data (latest counter value) to a broker.
301
301
At the same time, another client can invoke an action, such as `resetCounter`, by sending a publication message to the topic of this action.
302
302
This other client does not have to be node-wot, any MQTT client can interact with this Thing.
303
-
For node-wot clients, make sure to provide MQTT broker details (`host`, `port`, `username`, `password`, `clientId`) in the wot-servient.conf.json:
303
+
For node-wot clients, make sure to provide MQTT broker details (`host`, `port`, `username`, `password`, `clientId`) in the `node-wot.conf.json`:
304
304
305
305
```js
306
306
{
@@ -315,11 +315,11 @@ Please setup node-wot as described at the [node-wot main page](https://github.co
315
315
316
316
```
317
317
318
-
Start the script by the command `wot-servient mqtt-publish.js` or `node ../../packages/cli/dist/cli.js mqtt-publish.js`.
318
+
Start the script by the command `node-wot mqtt-publish.js` or `node ../../packages/cli/dist/cli.js mqtt-publish.js`.
319
319
320
320
- example-mqtt-subscription.js: Shows how node-wot consumes a Thing Description to do MQTT subscription on the provided event (=latest counter value) as well as initiate the action (reset counter).
321
321
322
-
Start the script by the command `wot-servient -c mqtt-subscribe.js` or `node ../../packages/cli/dist/cli.js -c mqtt-subscribe.js`.
322
+
Start the script by the command `node-wot -c mqtt-subscribe.js` or `node ../../packages/cli/dist/cli.js -c mqtt-subscribe.js`.
Copy file name to clipboardExpand all lines: packages/binding-netconf/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ The Binding example in the `./examples` directory provides a TD (`netconf-thing.
44
44
Depending on which NETCONF server is used, the following might have to be changed:
45
45
46
46
- IP address and port in `examples/netconf-thing.jsonld`
47
-
- credentials for the NETCONF Thing (id `urn:dev:wot:org:eclipse:netconf-example`) have to be changed in `wot-servient.conf.json`.
47
+
- credentials for the NETCONF Thing (id `urn:dev:wot:org:eclipse:netconf-example`) have to be changed in `node-wot.conf.json`.
48
48
49
49
## New Form Fields for the NETCONF Binding
50
50
@@ -53,7 +53,7 @@ Depending on which NETCONF server is used, the following might have to be change
53
53
The href contains: URI schema + IP address + port + XPath
54
54
55
55
- URI schema: the schema for NETCONF is not registered with IANA; the Binding is using `netconf`.
56
-
- IP address and port: IP address and port of the NETCONF server. The credentials for the SSH connection to the server can be added into the `wot-servient.configuration.json`.
56
+
- IP address and port: IP address and port of the NETCONF server. The credentials for the SSH connection to the server can be added into the `node-wot.configuration.json`.
57
57
- XPath: the XPath of the YANG model node addressed by the given InteractionAffordance. The XPath is automatically converted into the corresponding XML needed by the RPC. If an attribute refers to a particular namespace, an alias can be used. The complete URN for the alias should be added to the **nc:NSs** field.
0 commit comments