<trafficTransferAnalyst_uri>/{networkName}[.<format>]
transferSolutions、transferPath、stops
networkDataName resource represent network data that can be used in traffic transfer analysis, perform the GET request to get descriptive information of the transfer network and the traffic transfer analysis functionality supported.
Supported Methods:
Supported output formats: rjson, json, html, xml.
Implement the HTTP request on the following URI, where supermapiserver is the server name, with rjson being the output format.
http://supermapiserver:8090/iserver/services/traffictransferanalyst-sample/restjsr/traffictransferanalyst/Traffic-Changchun.rjson
Get the descriptive information of the current transfer network and the traffic transfer analysis functionality.
Field | Type | Description |
name | String | The name of the child resources transfer line. |
path | String | The access path of the child resource. |
resourceConfigID | String | The configuration item ID of the resource. |
resourceType | String | The resource type. |
supportedMediaTypes | String[] | The media-type of the supported representation. |
visible | boolean | Whether it is visible. |
Perform GET request on the transferNetwork resource http://supermapiserver:8090/iserver/services/traffictransferanalyst-sample/restjsr/traffictransferanalyst/Traffic-Changchun.rjson, the rjson representation returned is as the following:
{
"childResourceInfos": [{
"name": "solutions",
"path": "http://supermapiserver:8090/iserver/services/traffictransferanalyst-sample/restjsr/traffictransferanalyst/Traffic-Changchun/solutions",
"resourceConfigID": null,
"resourceType": null,
"supportedMediaTypes": null
},
{
"name": "path",
"path": "http://supermapiserver:8090/iserver/services/traffictransferanalyst-sample/restjsr/traffictransferanalyst/Traffic-Changchun/path",
"resourceConfigID": null,
"resourceType": null,
"supportedMediaTypes": null
},
{
"name": "stops",
"path": "http://supermapiserver:8090/iserver/services/traffictransferanalyst-sample/restjsr/traffictransferanalyst/Traffic-Changchun/stops",
"resourceConfigID": null,
"resourceType": null,
"supportedMediaTypes": null
}],
"networkName": "Traffic-Changchun"
}
Asks for the response identical to the one that would correspond to a GET request, but without the response body. This is useful for retrieving meta-information written in response headers, without having to transport the entire content. The meta-information includes the media-type, content-encoding, transfer-encoding, content-length, etc.
HEAD request can be used to check if the transferNetwork resource exists, or if the resource can be accessed by clients. It can also determine if the transferNetwork resource supports an output format <format> if performed on a URI with .<format> included.