File: sample_interface.wsdl

package info (click to toggle)
axis 1.4-29
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 52,100 kB
  • sloc: java: 129,124; xml: 10,602; jsp: 983; sh: 84; cs: 36; makefile: 18
file content (38 lines) | stat: -rw-r--r-- 1,282 bytes parent folder | download | duplicates (10)
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
<?xml version="1.0" encoding="UTF-8"?>
<definitions name="SampleServiceDefinition"
             targetNamespace="http://www.test.org/sample_interface"
             xmlns="http://schemas.xmlsoap.org/wsdl/"
             xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
             xmlns:tns="http://www.test.org/sample_interface"
             xmlns:sample-types="http://www.test.org/sample_types"
             xmlns:xsd="http://www.w3.org/2001/XMLSchema">

<import location="sample_types.xsd"
        namespace="http://www.test.org/sample_types"/>

<message name="sampleOpRequest">
  <part name="sampleOpParameters" type="sample-types:SampleType"/>
</message>
<message name="sampleOpResponse"/>

<portType name="SamplePortType">
  <operation name="sampleOp">
    <input message="tns:sampleOpRequest"/>
    <output message="tns:sampleOpResponse"/>
  </operation>
</portType>

<binding name="SampleSOAPBinding" type="tns:SamplePortType">
  <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
  <operation name="sampleOp">
    <soap:operation soapAction="http://www.test.org/sample#sampleOp"/>
    <input>
      <soap:body use="literal"/>
    </input>
    <output>
      <soap:body use="literal"/>
    </output>
  </operation>
</binding>

</definitions>