Untitled

 avatar
unknown
xml
8 months ago
3.9 kB
23
No Index
<wsdl:definitions
	xmlns:tns="http://myCompany.lt/soap-web-service"
	targetNamespace="http://myCompany.lt/soap-web-service"
	xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
	xmlns:s="http://www.w3.org/2001/XMLSchema"
	xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
	xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
	<wsdl:types></wsdl:types>

	<wsdl:message name="idcheckSoapIn">
		<wsdl:part name="userid" type="s:string">
			<s:documentation>Client code</s:documentation>
		</wsdl:part>
		<wsdl:part name="trans_id" type="s:string">
			<s:documentation>Unique transaction id</s:documentation>
		</wsdl:part>
	</wsdl:message>
	<wsdl:message name="idcheckSoapOut">
		<wsdl:part name="status" type="s:string"/>
		<wsdl:part name="amount" type="s:string"/>
		<wsdl:part name="error_desc" type="s:string"/>
		<wsdl:part name="trans_id" type="s:string"/>
		<wsdl:part name="postpaid_invoice_data" type="s:string"/>
	</wsdl:message>

	<wsdl:message name="saleSoapIn">
		<wsdl:part name="amount" type="s:int">
			<s:documentation>Amount the client paid</s:documentation>
		</wsdl:part>
		<wsdl:part name="userid" type="s:string">
			<s:documentation>Client code</s:documentation>
		</wsdl:part>
		<wsdl:part name="pos_id" type="s:string">
			<s:documentation>POS terminal id</s:documentation>
		</wsdl:part>
		<wsdl:part name="trans_id" type="s:string">
			<s:documentation>Unique transaction id</s:documentation>
		</wsdl:part>
	</wsdl:message>
	<wsdl:message name="saleSoapOut">
		<wsdl:part name="userid" type="s:string"/>
		<wsdl:part name="pos_id" type="s:string"/>
		<wsdl:part name="trans_id" type="s:string"/>
		<wsdl:part name="status" type="s:string"/>
	</wsdl:message>

	<wsdl:portType name="CustomerSoap">
		<wsdl:operation name="idcheck" parameterOrder="userid trans_id">
			<wsdl:documentation>Checks if client exists and returns his amount</wsdl:documentation>
			<wsdl:input message="tns:idcheckSoapIn"/>
			<wsdl:output message="tns:idcheckSoapOut"/>
		</wsdl:operation>
		<wsdl:operation name="sale" parameterOrder="amount userid pos_id trans_id">
			<wsdl:documentation>Gets the amount paid</wsdl:documentation>
			<wsdl:input message="tns:saleSoapIn"/>
			<wsdl:output message="tns:saleSoapOut"/>
		</wsdl:operation>
	</wsdl:portType>

	<wsdl:binding name="CustomerSoap" type="tns:CustomerSoap">
		<soap:binding transport="https://schemas.xmlsoap.org/soap/https" style="rpc"/>
		<wsdl:operation name="idcheck">
			<soap:operation soapAction="https://www.domainaddress.lt/SOAP_saskaitos/SOAP#idcheck"/>
			<wsdl:input>
				<soap:body use="encoded" encodingStyle="https://schemas.xmlsoap.org/soap/encoding/" namespace="https://www.domainaddress.lt/SOAP_saskaitos/SOAP/" parts="userid trans_id"/>
			</wsdl:input>
			<wsdl:output>
				<soap:body use="encoded" encodingStyle="https://schemas.xmlsoap.org/soap/encoding/" namespace="https://www.domainaddress.lt/SOAP_saskaitos/SOAP/" parts="status amount error_desc trans_id postpaid_invoice_data"/>
			</wsdl:output>
		</wsdl:operation>
		<wsdl:operation name="sale">
			<soap:operation soapAction="https://www.domainaddress.lt/SOAP_saskaitos/SOAP#sale"/>
			<wsdl:input>
				<soap:body use="encoded" encodingStyle="https://schemas.xmlsoap.org/soap/encoding/" namespace="https://www.domainaddress.lt/SOAP_saskaitos/SOAP/" parts="amount userid pos_id trans_id"/>
			</wsdl:input>
			<wsdl:output>
				<soap:body use="encoded" encodingStyle="https://schemas.xmlsoap.org/soap/encoding/" namespace="https://www.domainaddress.lt/SOAP_saskaitos/SOAP/" parts="userid pos_id trans_id status"/>
			</wsdl:output>
		</wsdl:operation>
	</wsdl:binding>

	<wsdl:service name="Customer">
		<wsdl:port name="CustomerSoap" binding="tns:CustomerSoap">
			<soap:address location="https://www.domainaddress.lt/SOAP_saskaitos/SOAP/perlas.php"/>
		</wsdl:port>
	</wsdl:service>
</wsdl:definitions>
Editor is loading...
Leave a Comment