File: soap_import_2.wsdl

package info (click to toggle)
python-zeep 4.3.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,600 kB
  • sloc: python: 15,551; makefile: 13
file content (42 lines) | stat: -rw-r--r-- 1,742 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0"?>
<definitions 
    xmlns:tns="http://example.com/stockquote.wsdl" 
    xmlns:xsd1="http://example.com/stockquote.xsd" 
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    name="StockQuote" 
    targetNamespace="http://example.com/stockquote.wsdl">
  <types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema" 
            targetNamespace="http://test.python-zeep.org/imports"
            xmlns:tns="http://test.python-zeep.org/imports">
      <import schemaLocation="test_import_2.xsd" namespace="http://example.com/stockquote.xsd"/>
    </schema>
    <schema xmlns="http://www.w3.org/2001/XMLSchema" 
            targetNamespace="http://test.python-zeep.org/something"
            xmlns:tns="http://test.python-zeep.org/something">
      <import namespace="http://schemas.xmlsoap.org/soap/encoding/" 
              schemaLocation="http://schemas.xmlsoap.org/soap/encoding/"/>
    </schema>
  </types>
  <message name="GetLastTradePriceInput">
    <part name="body" element="xsd1:TradePriceRequest"/>
  </message>
  <message name="GetLastTradePriceOutput">
    <part name="body" element="xsd1:TradePrice"/>
  </message>
  <message name="FaultMessageMsg1">
    <part name="fault1" element="xsd1:Fault1"/>
  </message>
  <message name="FaultMessageMsg2">
    <part name="fault2" element="xsd1:Fault2"/>
  </message>
  <portType name="StockQuotePortType">
    <operation name="GetLastTradePrice">
      <input message="tns:GetLastTradePriceInput"/>
      <output message="tns:GetLastTradePriceOutput"/>
      <fault message="tns:FaultMessageMsg1" name="fault1"/>
      <fault message="tns:FaultMessageMsg2" name="fault2"/>
    </operation>
  </portType>
</definitions>