blob: a9bdfdd4257403bda67c44b23cb6c4711290fbd8 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2017, 2018 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
http://www.eclipse.org/legal/epl-2.0.
This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
version 2 with the GNU Classpath Exception, which is available at
https://www.gnu.org/software/classpath/license.html.
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
-->
<definitions name="HttpTestService"
targetNamespace="http://httptestservice.org/wsdl"
xmlns:tns="http://httptestservice.org/wsdl"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:ns="http://httptestservice.org/types"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
<types>
<schema targetNamespace="http://httptestservice.org/types"
xmlns:tns="http://httptestservice.org/types"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns="http://www.w3.org/2001/XMLSchema">
<complexType name="HelloRequest">
<sequence>
<element name="string" type="string" nillable="true"/>
</sequence>
</complexType>
<complexType name="HelloResponse">
<sequence>
<element name="string" type="string" nillable="true"/>
</sequence>
</complexType>
<complexType name="Hello1Request">
<sequence>
<element name="string" type="string" nillable="true"/>
</sequence>
</complexType>
<complexType name="Hello1Response">
<sequence>
<element name="string" type="string" nillable="true"/>
</sequence>
</complexType>
</schema>
</types>
<message name="Hello_helloRequest">
<part name="parameters" type="ns:HelloRequest"/>
</message>
<message name="Hello_helloResponse">
<part name="result" type="ns:HelloResponse"/>
</message>
<message name="Hello1_hello1Request">
<part name="parameters" type="ns:Hello1Request"/>
</message>
<message name="Hello1_hello1Response">
<part name="result" type="ns:Hello1Response"/>
</message>
<portType name="Hello">
<operation name="hello">
<input message="tns:Hello_helloRequest"/>
<output message="tns:Hello_helloResponse"/>
</operation>
</portType>
<portType name="Hello1">
<operation name="hello1">
<input message="tns:Hello1_hello1Request"/>
<output message="tns:Hello1_hello1Response"/>
</operation>
</portType>
<binding name="HelloBinding" type="tns:Hello">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc"/>
<operation name="hello">
<soap:operation soapAction=""/>
<input>
<soap:body use="literal" namespace="http://httptestservice.org/wsdl"/>
</input>
<output>
<soap:body use="literal" namespace="http://httptestservice.org/wsdl"/>
</output>
</operation>
</binding>
<binding name="Hello1Binding" type="tns:Hello1">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc"/>
<operation name="hello1">
<soap:operation soapAction=""/>
<input>
<soap:body use="literal" namespace="http://httptestservice.org/wsdl"/>
</input>
<output>
<soap:body use="literal" namespace="http://httptestservice.org/wsdl"/>
</output>
</operation>
</binding>
<service name="HttpTestService">
<port name="HelloPort" binding="tns:HelloBinding">
<soap:address location="http://localhost:8080/wsdltojava/ws4ee"/>
</port>
<port name="Hello1Port" binding="tns:Hello1Binding">
<soap:address location="http://localhost:8080/wsdltojava/ws4ee"/>
</port>
</service>
</definitions>