URI
<services_uri>/{component}/arcgisrest[.<format>]
支持的方法
父资源
子资源
mapService 、featureService、networkService、geometryService
介绍
arcgisrest 资源的表述。arcgisrest 资源是 SuperMap iServer 提供的 ArcGIS REST 服务的根节点,是访问各 ArcGIS REST 服务的入口。
支持的方法:
资源层次
该资源的资源层次图。
HTTP 请求方法
对如下 URI 执行 HTTP 请求,以 json 输出格式为例加以说明,其中,supermapiserver 是服务器名。
http://supermapiserver:8090/iserver/services/{component}/arcgisrest.json
GET 请求
获取 arcgisrest 资源的表述,即获取当前服务的入口
响应结构
对 arcgisrest 资源执行 GET 请求,在响应消息的实体主体里是一个资源描述集,其中单个资源描述的结构如下:
字段 | 类型 | 说明 |
resourceConfigID | String | 当前资源实现类在资源配置文件中的标志。 |
supportedMediaTypes | List<MediaType> | 资源支持的表述格式。 |
path | String | 资源 URI。 |
name | String | 资源名。 |
resourceType | ResourceType | 资源的类型。 |
响应示例
对 arcgisrest 资源 http://localhost:8090/iserver/services/map-Population/arcgisrest.rjson,执行 GET 请求,则返回的 rjson 格式响应结果如下:
[{
"resourceConfigID": "mapServer",
"supportedMediaTypes": [
"application/xml",
"text/xml",
"application/json",
"application/fastjson",
"application/rjson",
"text/html",
"application/jsonp",
"application/x-java-serialized-object"
],
"path": "http://localhost:8090/iserver/services/map-Population/arcgisrest/PopulationDistribution/MapServer",
"name": "PopulationDistribution",
"resourceType": "StaticResource"
}]
HEAD 请求
返回跟 GET 请求一样的 HTTP 响应头,但是没有响应实体。可以在不必传输整个响应内容的情况下,获取包含在响应消息头中的元数据信息。元数据信息包括媒体类型,字符编码,压缩编码,实体内容长度等。
HEAD 请求可以用来判断 arcgisrest 资源是否存在,或者客户端是否有权限访问 arcgisrest 资源。通过对加.<format>的 URI 执行 HEAD 请求,还可以快速判断 arcgisrest 资源是否支持<format>格式的表述。
请参见
- mapService 、featureService、networkService、geometryService
- 客户端构建 REST 请求
- 状态码列表及说明
- SuperMap iServer REST API 表述格式介绍
- 资源层次结构