tiles


URI

<datacatalog_uri>/tiles[.<format>]

Supported methods

GET, HEAD

Parent resource

datacatalog

Child resources

dataimport, datas

Introduction

The tiles resource represents the cache data. It can get the entry of importing and exporting operations on the cache data by performing the GET request.

Supported Methods:

Supported output formats: rjson, json, html, xml.

Resource hierarchy

HTTP request methods

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/datacatalog/rest/datacatalog/tiles.rjson

GET request

Get the entry of importing and exporting operations on the cache data.

Request parameter

None

Response structure

GET request in tiles resource is a resource descriptive collection in the entity of response messaging, where the structure of a single resource description is as follows:

Field Type Description
name String The sub resource name.
path String Sub resource URL.
resourceConfigID String The configuration item ID of the resource.
resourceType String The resource type.
supportedMediaTypes String[] The media-type of the supported representation.

 

Response example

The returned rjson format representation after implementing the GET request on the tiles resource is as follows:

[

  {

    "name": "dataimport",

    "path": "http://localhost:8090/iserver/services/datacatalog/rest/datacatalog/tiles/dataimport",

    "resourceConfigID": "dataimport",

    "resourceType": null,

    "supportedMediaTypes": null

  },

  {

    "name": "datas",

    "path": "http://localhost:8090/iserver/services/datacatalog/rest/datacatalog/tiles/datas",

    "resourceConfigID": "datas",

    "resourceType": null,

    "supportedMediaTypes": null

  }

]

HEAD request

Returns the same HTTP response header as the GET request, but does not have the response entity. It can get the metadata information in the response header without transferring the whole response content. Metadata information includes media type, character encoding, compression encoding, entity content length, and so on.

The HEAD request can be used to determine whether the tiles resource exists or whether the client has authority to access the tiles resource. It can quickly determine whether the tiles resource supports the representation in <format> format by performing HEAD request on URI with <format>.

See