blob: dc236073ca5d46a0f72235443c885de580b94aa0 [file] [log] [blame]
<?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 targetNamespace="http://sample/upper" xmlns:tns="http://sample/upper"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:sca="http://docs.oasis-open.org/ns/opencsa/sca/200912"
name="Upper">
<wsdl:types>
<schema elementFormDefault="qualified" targetNamespace="http://sample/upper"
xmlns="http://www.w3.org/2001/XMLSchema">
<element name="upper">
<complexType>
<sequence>
<element name="s" type="xsd:string" />
</sequence>
</complexType>
</element>
<element name="upperResponse">
<complexType>
<sequence>
<element name="result" type="xsd:string" />
</sequence>
</complexType>
</element>
</schema>
</wsdl:types>
<wsdl:message name="upperRequest">
<wsdl:part element="tns:upper" name="parameters" />
</wsdl:message>
<wsdl:message name="upperResponse">
<wsdl:part element="tns:upperResponse" name="parameters" />
</wsdl:message>
<wsdl:portType name="Upper" sca:requires="sca:asyncInvocation">
<wsdl:operation name="upper">
<wsdl:input message="tns:upperRequest" name="upperRequest" />
<wsdl:output message="tns:upperResponse" name="upperResponse" />
</wsdl:operation>
</wsdl:portType>
</wsdl:definitions>