Edit device window

This window edits the already added device records. This topic documents only some of a device component’s properties.
Figure 48.   Edit device window
Image

To open this window, expand Config > Drivers and double-click HttpClientNetwork. Http Client Device Manager opens select the device which needs to be edited, Click Editbutton. Select the device from the drop-down list, and click OK. Another New window opens, where other parameters for the device are configured.

Property Value Description
Name text
Provides descriptive text that reflects the identity of the entity or logical grouping.
Type unavailable to edit unavailable to edit
Status read-only
Reports the current condition of the entity as of the last refresh: {alarm}, {disabled}, {down}, {fault}, {ok}, {stale}, {unackedAlarm}
Auth Type drop-down lists (default to httpClient, NoHttpAuth)
Selects the type of user authentication from among these methods:
  • HTTP Basic
  • HTTP Digest
  • Niagara SCRAM-SHA
  • Bearer token
  • Cookies from a previous request

Selecting Auth Type and saving updates the Config property below allowing further settings to be applied.

Transport Type drop-down lists (default to httpClient, UrlConnectionHttpTransport)
Switches the underlying transport layer between the standard JRE (UrlConnectionHttpTransport) and the third-party OKHttp library (OKHttp Transport).
Mode drop-down list
Selects the security mode.

Secure: Secure mode refers to https on port 443 by default.

Insecure: Insecure mode means http without SSL and assumes port 80 by default.

Host Address URL
Defines the URL for the client’s address and parameters. This is the address to ping for a given device.
Port Number (defaults 443)
Specifies the http port number.
Method drop-down list
Selects a request method from:

GET: is used to request data from a specified resource.

POST: is used to send data to a server to create/update a resource. The data sent to the server with POST is stored in the request body of the HTTP request.

PUT: is used to send data to a server to create/update a resource. The difference between the POST and PUT request is that the PUT request are unchanged.