| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --> |
| <wsdl:definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://cxf.apache.org/xmlbeans/wsdltest" xmlns:x1="http://cxf.apache.org/xmlbeans/wsdltest" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="HelloWorld" targetNamespace="http://cxf.apache.org/xmlbeans/wsdltest"> |
| <wsdl:types> |
| <schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:x1="http://cxf.apache.org/xmlbeans/wsdltest" targetNamespace="http://cxf.apache.org/xmlbeans/wsdltest" elementFormDefault="qualified"> |
| <complexType name="StringListType"> |
| <all> |
| <element minOccurs="1" maxOccurs="1" name="myname" type="string"/> |
| <element minOccurs="1" maxOccurs="1" name="myaddress" type="string"/> |
| </all> |
| </complexType> |
| <element name="sayHi2Message" type="x1:StringListType"/> |
| </schema> |
| </wsdl:types> |
| <wsdl:message name="sayHiRequest2"> |
| <wsdl:part element="x1:sayHi2Message" name="in"/> |
| </wsdl:message> |
| <wsdl:portType name="GreeterMine"> |
| <wsdl:operation name="sayHi2"> |
| <wsdl:input message="tns:sayHiRequest2" name="sayHiRequest2"/> |
| </wsdl:operation> |
| </wsdl:portType> |
| <wsdl:binding name="Greeter_SOAPBinding" type="tns:GreeterMine"> |
| <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/> |
| <wsdl:operation name="sayHi2"> |
| <soap:operation soapAction="sayHi2" style="document"/> |
| <wsdl:input name="sayHiRequest2"> |
| <soap:body use="literal"/> |
| </wsdl:input> |
| </wsdl:operation> |
| </wsdl:binding> |
| <wsdl:service name="SOAPMineService"> |
| <wsdl:port binding="tns:Greeter_SOAPBinding" name="SoapPort"> |
| <soap:address location="http://localhost:9000/SoapContext/SoapPort"/> |
| </wsdl:port> |
| </wsdl:service> |
| </wsdl:definitions> |