<?xml version="1.0" encoding="UTF-8"?><wsdl:definitions targetNamespace="http://tejarat/paymentGateway/definitions" xmlns:schema="http://tejarat/paymentGateway/definitions" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">

    <wsdl:types>
        <schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://tejarat/paymentGateway/definitions" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://tejarat/paymentGateway/definitions">

            <element name="verifyRequest">
                <complexType>
                    <sequence>
                        <element name="merchantId" type="string"/>
                        <element name="referenceNumber" type="string"/>
                    </sequence>
                </complexType>
            </element>
            <element name="verifyResponse" type="long"/>
        </schema>
    </wsdl:types>

    <wsdl:message name="verifyResponse">
        <wsdl:part element="schema:verifyResponse" name="verifyResponse">
        </wsdl:part>
    </wsdl:message>

    <wsdl:message name="verifyRequest">
        <wsdl:part element="schema:verifyRequest" name="verifyRequest">
        </wsdl:part>
    </wsdl:message>

    <wsdl:portType name="Merchant">
        <wsdl:operation name="verify">
            <wsdl:input message="schema:verifyRequest" name="verifyRequest">
            </wsdl:input>
            <wsdl:output message="schema:verifyResponse" name="verifyResponse">
            </wsdl:output>
        </wsdl:operation>
    </wsdl:portType>

    <wsdl:binding name="MerchantBinding" type="schema:Merchant">
        <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
        <wsdl:operation name="verify">
            <soap:operation soapAction=""/>
            <wsdl:input name="verifyRequest">
                <soap:body use="literal"/>
            </wsdl:input>
            <wsdl:output name="verifyResponse">
                <soap:body use="literal"/>
            </wsdl:output>
        </wsdl:operation>
    </wsdl:binding>

    <wsdl:service name="MerchantService">
        <wsdl:port binding="schema:MerchantBinding" name="MerchantPort">
            <soap:address location="http://pg.tejaratbank.net:80/paymentGateway/"/>
        </wsdl:port>
    </wsdl:service>

</wsdl:definitions>