Created
November 10, 2017 12:53
-
-
Save mresetar/2bfedfe3fccb7cc2d6a5de72860826ca to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<wsdl:definitions xmlns:primjer="http://www.croz.net/StanjeRacunaServis/" | |
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" | |
xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="StanjeRacunaServis" | |
targetNamespace="http://www.croz.net/StanjeRacunaServis/"> | |
<wsdl:types> | |
<xsd:schema targetNamespace="http://www.croz.net/StanjeRacunaServis/"> | |
<xsd:element name="StanjeRacunaRequest" type="primjer:StanjeRacunaRequestType" /> | |
<xsd:complexType name="StanjeRacunaRequestType"> | |
<xsd:sequence> | |
<xsd:element name="IbanRacuna" type="xsd:string" /> | |
</xsd:sequence> | |
</xsd:complexType> | |
<xsd:element name="StanjeRacunaResponse" type="primjer:StanjeRacunaResponseType" /> | |
<xsd:complexType name="StanjeRacunaResponseType"> | |
<xsd:sequence> | |
<xsd:element name="Ime" type="xsd:string" /> | |
<xsd:element name="Prezime" type="xsd:string" /> | |
<xsd:element name="Stanje" type="xsd:double" /> | |
</xsd:sequence> | |
</xsd:complexType> | |
</xsd:schema> | |
</wsdl:types> | |
<wsdl:message name="stanjeRacunaRequest"> | |
<wsdl:part element="primjer:StanjeRacunaRequest" name="parameters" /> | |
</wsdl:message> | |
<wsdl:message name="stanjeRacunaResponse"> | |
<wsdl:part element="primjer:StanjeRacunaResponse" name="parameters" /> | |
</wsdl:message> | |
<wsdl:portType name="StanjeRacunaServis"> | |
<wsdl:operation name="stanjeRacuna"> | |
<wsdl:input message="primjer:stanjeRacunaRequest" /> | |
<wsdl:output message="primjer:stanjeRacunaResponse" /> | |
</wsdl:operation> | |
</wsdl:portType> | |
<wsdl:binding name="StanjeRacunaServisSOAP" type="primjer:StanjeRacunaServis"> | |
<soap:binding style="document" | |
transport="http://schemas.xmlsoap.org/soap/http" /> | |
<wsdl:operation name="stanjeRacuna"> | |
<soap:operation soapAction="http://www.croz.net/StanjeRacunaServis/stanjeRacuna" /> | |
<wsdl:input> | |
<soap:body use="literal" /> | |
</wsdl:input> | |
<wsdl:output> | |
<soap:body use="literal" /> | |
</wsdl:output> | |
</wsdl:operation> | |
</wsdl:binding> | |
<wsdl:service name="StanjeRacunaServis"> | |
<wsdl:port binding="primjer:StanjeRacunaServisSOAP" name="StanjeRacunaServisSOAP"> | |
<soap:address location="http://localhost:8080/MojServis" /> | |
</wsdl:port> | |
</wsdl:service> | |
</wsdl:definitions> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment