GPD_Service
单击此处,获取完整的操作列表。
GetList
提交检索请求,获取元数据检索结果记录列表
输入参数:Page = 页码,空值表示默认页第1页,每页20条数据。从1开始计数;Flag = 检索的表,空值表示在默认表(产品Product)中检索。1=产品Product,2=企业Company,3=样本Attach;
Express = 检索条件表达式。格式:(Country:中国 OR ComID:15426) AND ProductName_C:干燥机。详见说明文档。
SortField = 排序字段,可多个,以英文逗号分隔,如:FIELD_SCORE,Putdate,AllFileCount。表示按照这三个字段依次排序。可为空,按默认方式排序。
SortType = 排序方式,1=顺序,0=倒序,以英文逗号分隔,数量和SortField必须相同,分别表示对应的排序字段的排序方式。如:1,1,1。表示FIELD_SCORE,Putdate,AllFileCount都按倒序排序。
返回结果:XmlDocument。
测试
若要使用 HTTP POST 协议对操作进行测试,请单击“调用”按钮。SOAP 1.1
以下是 SOAP 1.2 请求和响应示例。所显示的占位符需替换为实际值。
POST /GPD_SunWay_Service/GPD_Service.asmx HTTP/1.1 Host: 113.207.68.11 Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://gpd.sunwayinfo.com.cn/webservices/GetList" <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <GetList xmlns="http://gpd.sunwayinfo.com.cn/webservices/"> <Page>string</Page> <Flag>string</Flag> <Express>string</Express> <SortField>string</SortField> <SortType>string</SortType> </GetList> </soap:Body> </soap:Envelope>
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <GetListResponse xmlns="http://gpd.sunwayinfo.com.cn/webservices/"> <GetListResult>xml</GetListResult> </GetListResponse> </soap:Body> </soap:Envelope>
SOAP 1.2
以下是 SOAP 1.2 请求和响应示例。所显示的占位符需替换为实际值。
POST /GPD_SunWay_Service/GPD_Service.asmx HTTP/1.1 Host: 113.207.68.11 Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <GetList xmlns="http://gpd.sunwayinfo.com.cn/webservices/"> <Page>string</Page> <Flag>string</Flag> <Express>string</Express> <SortField>string</SortField> <SortType>string</SortType> </GetList> </soap12:Body> </soap12:Envelope>
HTTP/1.1 200 OK Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <GetListResponse xmlns="http://gpd.sunwayinfo.com.cn/webservices/"> <GetListResult>xml</GetListResult> </GetListResponse> </soap12:Body> </soap12:Envelope>
HTTP GET
以下是 HTTP GET 请求和响应示例。所显示的占位符需替换为实际值。
GET /GPD_SunWay_Service/GPD_Service.asmx/GetList?Page=string&Flag=string&Express=string&SortField=string&SortType=string HTTP/1.1 Host: 113.207.68.11
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0"?> xml
HTTP POST
以下是 HTTP POST 请求和响应示例。所显示的占位符需替换为实际值。
POST /GPD_SunWay_Service/GPD_Service.asmx/GetList HTTP/1.1 Host: 113.207.68.11 Content-Type: application/x-www-form-urlencoded Content-Length: length Page=string&Flag=string&Express=string&SortField=string&SortType=string
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0"?> xml