Commit df6a73e6 by Patryk Czarnik

kalkulator.wsdl - operacja witaj

parent 88080148
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<wsdl:definitions name="Kalkulator"
targetNamespace="http://www.example.org/Kalkulator/"
xmlns:tns="http://www.example.org/Kalkulator/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
>
<wsdl:types>
<xsd:schema targetNamespace="http://www.example.org/Kalkulator/">
<xsd:element name="witaj">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="imie" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="witajResponse">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="pozdrowienie" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
</wsdl:types>
<wsdl:message name="witajRequest">
<wsdl:part element="tns:witaj" name="parameters"/>
</wsdl:message>
<wsdl:message name="witajResponse">
<wsdl:part element="tns:witajResponse" name="parameters"/>
</wsdl:message>
<wsdl:portType name="Kalkulator">
<wsdl:operation name="witaj">
<wsdl:input message="tns:witajRequest"/>
<wsdl:output message="tns:witajResponse"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="KalkulatorSOAP" type="tns:Kalkulator">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="witaj">
<soap:operation soapAction="http://www.example.org/Kalkulator/witaj"/>
<wsdl:input>
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output>
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="Kalkulator">
<wsdl:port binding="tns:KalkulatorSOAP" name="KalkulatorSOAP">
<soap:address location="http://localhost:8080/Kalkulator/Kalkulator"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
</dependencies> </dependencies>
<build> <build>
<finalName>${project.artifactId}</finalName>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment