documentunwrappingtest.wsdl

来自「开源的axis2框架的源码。用于开发WEBSERVER」· WSDL 代码 · 共 365 行 · 第 1/2 页

WSDL
365
字号
<?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 name="wsdladmintest"
                  targetNamespace="http://www.example.org/wsdltest/"
                  xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
                  xmlns:tns="http://www.example.org/wsdltest/"
                  xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
                  xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <wsdl:types>
        <xsd:schema targetNamespace="http://www.example.org/wsdltest/"
                    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                    xmlns:p="http://schemas.xmlsoap.org/wsdl/soap/">
            <xsd:element name="Request1">
                <xsd:complexType>
                    <xsd:sequence>
                        <xsd:element name="param1" type="xsd:string"/>
                    </xsd:sequence>
                </xsd:complexType>
            </xsd:element>
            <xsd:element name="Response1">
                <xsd:complexType>
                    <xsd:sequence>
                        <xsd:element name="return" type="xsd:string"/>
                    </xsd:sequence>
                </xsd:complexType>
            </xsd:element>

            <xsd:element name="Request2">
                <xsd:complexType>
                    <xsd:sequence>
                        <xsd:element name="param1" type="xsd:string"/>
                        <xsd:element name="param2" type="xsd:string"/>
                        <xsd:element name="param3" type="xsd:string"/>
                    </xsd:sequence>
                </xsd:complexType>
            </xsd:element>
            <xsd:element name="Response2">
                <xsd:complexType>
                    <xsd:sequence>
                        <xsd:element name="param1" type="xsd:int"/>
                        <xsd:element name="param2" type="xsd:boolean"/>
                        <xsd:element name="param3" type="xsd:float"/>
                    </xsd:sequence>
                </xsd:complexType>
            </xsd:element>

            <xsd:element name="Request3" type="tns:SingleElementComplexType"/>
            <xsd:element name="Response3" type="tns:SingleElementComplexType"/>

            <xsd:complexType name="SingleElementComplexType">
                <xsd:sequence>
                    <xsd:element name="param1" type="xsd:string"/>
                </xsd:sequence>
            </xsd:complexType>

            <xsd:element name="Request4" type="tns:MultipleElementComplexType"/>
            <xsd:element name="Response4" type="tns:MultipleElementComplexType"/>

            <xsd:complexType name="MultipleElementComplexType">
                <xsd:sequence>
                    <xsd:element name="param1" type="xsd:string"/>
                    <xsd:element name="param2" type="xsd:string"/>
                    <xsd:element name="param3" type="xsd:string"/>
                </xsd:sequence>
            </xsd:complexType>

            <xsd:element name="Request5" >
                <xsd:complexType>
                    <xsd:complexContent>
                        <xsd:extension base="tns:AbstractComplexType">
                            <xsd:sequence>
                              <xsd:element name="parm3" type="xsd:string"/>
                              <xsd:any></xsd:any>
                          </xsd:sequence>
                        </xsd:extension>
                    </xsd:complexContent>
                </xsd:complexType>
            </xsd:element>

            <xsd:element name="Response5" >
                <xsd:complexType>
                    <xsd:complexContent>
                        <xsd:extension base="tns:AbstractComplexType">
                            <xsd:sequence>
                              <xsd:element name="parm3" type="xsd:string"/>
                              <xsd:any></xsd:any>
                          </xsd:sequence>
                        </xsd:extension>
                    </xsd:complexContent>
                </xsd:complexType>
            </xsd:element>

            <xsd:element name="Request6" type="tns:ChildComplexType"/>
            <xsd:element name="Response6" type="tns:ChildComplexType"/>

            <xsd:element name="Request7" >
                <xsd:complexType>
                    <xsd:attribute name="attrib1" type="xsd:string"/>
                </xsd:complexType>
            </xsd:element>
            <xsd:element name="Response7" >
                  <xsd:complexType>
                    <xsd:attribute name="attrib1" type="xsd:string"/>
                </xsd:complexType>
            </xsd:element>

            <xsd:element name="Request8">
                <xsd:complexType>
                    <xsd:sequence>
                        <xsd:element name="param1" type="xsd:string"/>
                        <xsd:element name="param2" type="xsd:string"/>
                    </xsd:sequence>
                    <xsd:attribute name="attrib1" type="xsd:string"/>
                </xsd:complexType>
            </xsd:element>

            <xsd:element name="Response8">
                <xsd:complexType>
                    <xsd:sequence>
                        <xsd:element name="param1" type="xsd:string"/>
                        <xsd:element name="param2" type="xsd:string"/>
                    </xsd:sequence>
                    <xsd:attribute name="attrib1" type="xsd:string"/>
                </xsd:complexType>
            </xsd:element>

            <xsd:complexType name="AbstractComplexType">
                <xsd:sequence>
                    <xsd:element name="param1" type="xsd:anyType"/>
                    <xsd:element name="param2" type="xsd:int"/>
                </xsd:sequence>
            </xsd:complexType>

            <xsd:complexType name="ChildComplexType">
                  <xsd:complexContent>
                      <xsd:extension base="tns:AbstractComplexType">
                          <xsd:sequence>
                              <xsd:element name="parm3" type="xsd:string"/>
                              <xsd:any></xsd:any>
                          </xsd:sequence>
                      </xsd:extension>
                  </xsd:complexContent>
            </xsd:complexType>
        </xsd:schema>
    </wsdl:types>
    <wsdl:message name="OperationRequestMessage1">
        <wsdl:part element="tns:Request1" name="parameters"/>
    </wsdl:message>
    <wsdl:message name="OperationResponseMessage1">
        <wsdl:part element="tns:Response1" name="parameters"/>
    </wsdl:message>

    <wsdl:message name="OperationRequestMessage2">
        <wsdl:part element="tns:Request2" name="parameters"/>
    </wsdl:message>
    <wsdl:message name="OperationResponseMessage2">
        <wsdl:part element="tns:Response2" name="parameters"/>
    </wsdl:message>

    <wsdl:message name="OperationRequestMessage3">
        <wsdl:part element="tns:Request3" name="parameters"/>
    </wsdl:message>
    <wsdl:message name="OperationResponseMessage3">
        <wsdl:part element="tns:Response3" name="parameters"/>
    </wsdl:message>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?