forked from infomed/metabuscador
-
Notifications
You must be signed in to change notification settings - Fork 0
/
search_service.wsdl
37 lines (37 loc) · 1.96 KB
/
search_service.wsdl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="ISO-8859-1"?>
<definitions xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="urn:SearchService" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="urn:SearchService">
<types>
<xsd:schema targetNamespace="urn:SearchService"
>
<xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
<xsd:import namespace="http://schemas.xmlsoap.org/wsdl/" />
</xsd:schema>
</types>
<message name="searchRequest">
<part name="query" type="xsd:string" />
<part name="infoS_id" type="xsd:int" />
<part name="count_elem" type="xsd:int" />
<part name="init_elem" type="xsd:int" /></message>
<message name="searchResponse">
<part name="return" type="xsd:array" /></message>
<portType name="SearchServicePortType">
<operation name="search">
<documentation>Search an information in an information source</documentation>
<input message="tns:searchRequest"/>
<output message="tns:searchResponse"/>
</operation>
</portType>
<binding name="SearchServiceBinding" type="tns:SearchServicePortType">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="search">
<soap:operation soapAction="urn:Search_Service#search" style="rpc"/>
<input><soap:body use="encoded" namespace="urn:Search_Service" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></input>
<output><soap:body use="encoded" namespace="urn:Search_Service" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></output>
</operation>
</binding>
<service name="SearchService">
<port name="SearchServicePort" binding="tns:SearchServiceBinding">
<soap:address location="http://localhost/buscador(Repo)/soap/index.php"/>
</port>
</service>
</definitions>