<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns:typens="urn:maxdBrowse" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/" name="maxdBrowse" targetNamespace="urn:maxdBrowse">
	<message name="query">
		<part name="args" type="xsd:string"/>
		<part name="resultType" type="xsd:string"/>
	</message>
	<message name="queryResponse">
		<part name="return" type="xsd:string"/>
	</message>
	<portType name="soapQueryPortType">
		<operation name="query">
			<documentation>
				The core API accepting a maxdQL input string (args) and a resultType that can either be 'url' (returning a url to the result) or 'result' (returning the result itself).
			</documentation>
			<input message="typens:query"/>
			<output message="typens:queryResponse"/>
		</operation>
	</portType>
	<binding name="soapQueryBinding" type="typens:soapQueryPortType">
		<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
		<operation name="query">
			<soap:operation soapAction="urn:soapQueryAction"/>
			<input>
				<soap:body namespace="urn:maxdBrowse" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
			</input>
			<output>
				<soap:body namespace="urn:maxdBrowse" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
			</output>
		</operation>
	</binding>
	<service name="maxdBrowseService">
		<port name="soapQueryPort" binding="typens:soapQueryBinding">
			<soap:address location="http://www.streptobase.org/igf/maxdBrowse/soapServer.php"/>
		</port>
	</service>
</definitions>
