文档
测试

查询服务组件列表

GET
http://localhost:9099/getServiceComponentList

请求参数

参数名
类型
描述
必填
pageIndex
int
第几页,第一页为起始页,要求为正整数
必填
pageSize
int
每页大小,要求为正整数
必填

说明 / 示例

{ "result": 1, "message": null, "data": { "pageNum": 2, "pageSize": 5, "total": 18, "pages": 4, "list": [ { "id": null, "serviceId": "325db311bf9e4b718d748f3cab8db5e2", "serviceType": "ws", "bindingAddress": "http://localhost:7004/test", "serviceName": "testService", "portNumber": "testPort", "targetNamespace": "http://www.hnu.edu.cn", "wsdlUrl": "http://localhost:7004/test?wsdl", "majorVersion": null, "minorVersion": null, "routingFrom": null, "routingTo": null }, { "id": null, "serviceId": "3ff4da01b77f4de2a7152ca09de91101", "serviceType": "ws222", "bindingAddress": "http://localhost:7004/test", "serviceName": "testService", "portNumber": "testPort", "targetNamespace": "http://www.hnu.edu.cn", "wsdlUrl": "http://localhost:7004/test?wsdl", "majorVersion": "", "minorVersion": "", "routingFrom": "", "routingTo": "" }, { "id": null, "serviceId": "4", "serviceType": null, "bindingAddress": null, "serviceName": null, "portNumber": null, "targetNamespace": null, "wsdlUrl": null, "majorVersion": null, "minorVersion": null, "routingFrom": null, "routingTo": null }, { "id": null, "serviceId": "4534", "serviceType": null, "bindingAddress": null, "serviceName": null, "portNumber": null, "targetNamespace": null, "wsdlUrl": null, "majorVersion": null, "minorVersion": null, "routingFrom": null, "routingTo": null }, { "id": null, "serviceId": "635", "serviceType": null, "bindingAddress": null, "serviceName": null, "portNumber": null, "targetNamespace": null, "wsdlUrl": null, "majorVersion": null, "minorVersion": null, "routingFrom": null, "routingTo": null } ], "lastPage": false, "firstPage": false } } result的值0为失败,1为成功 data是包含页面信息在内的数据集 list为每行数据,具体每行的字段意义如下: serviceType:服务类型 bindingAddress:绑定地址 servicename:服务名称 portnumber:端口号 targetNamespace:命名空间 wsdlurl:wsdl地址 majorVersion:主版本号 minorVersion:最小版本号 routingFrom:路由From端点 routingTo:路由To端点