~ubuntu-branches/ubuntu/trusty/ruby1.9/trusty

« back to all changes in this revision

Viewing changes to test/wsdl/any/any.wsdl

  • Committer: Bazaar Package Importer
  • Author(s): Stephan Hermann
  • Date: 2008-01-24 11:42:29 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20080124114229-jw2f87rdxlq6gp11
Tags: 1.9.0.0-2ubuntu1
* Merge from debian unstable, remaining changes:
  - Robustify check for target_os, fixing build failure on lpia.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" encoding="utf-8"?>
2
 
<definitions name="echo"
3
 
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
4
 
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
5
 
    xmlns:tns="urn:example.com:echo"
6
 
    xmlns:txd="urn:example.com:echo-type"
7
 
    targetNamespace="urn:example.com:echo"
8
 
    xmlns="http://schemas.xmlsoap.org/wsdl/">
9
 
  <types>
10
 
    <xsd:schema targetNamespace="urn:example.com:echo-type">
11
 
      <xsd:complexType name="foo.bar">
12
 
        <xsd:sequence>
13
 
          <xsd:any />
14
 
        </xsd:sequence>
15
 
      </xsd:complexType>
16
 
    </xsd:schema>
17
 
  </types>
18
 
 
19
 
  <message name="msg_echoitem">
20
 
    <part name="echoitem" type="txd:foo.bar"/>
21
 
  </message>
22
 
 
23
 
  <portType name="echo_port_type">
24
 
    <operation name="echo">
25
 
      <input message="tns:msg_echoitem"/>
26
 
      <output message="tns:msg_echoitem"/>
27
 
    </operation>
28
 
  </portType>
29
 
 
30
 
  <binding name="echo_binding" type="tns:echo_port_type">
31
 
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc"/>
32
 
    <operation name="echo">
33
 
      <soap:operation soapAction="urn:example.com:echo"/>
34
 
      <input>
35
 
        <soap:body use="encoded" namespace="urn:example.com:echo"
36
 
            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
37
 
      </input>
38
 
      <output>
39
 
        <soap:body use="encoded" namespace="urn:example.com:echo"
40
 
            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
41
 
      </output>
42
 
    </operation>
43
 
  </binding>
44
 
 
45
 
  <service name="echo_service">
46
 
    <port name="echo_port" binding="tns:echo_binding">
47
 
      <soap:address location="http://localhost:10080"/>
48
 
    </port>
49
 
  </service>
50
 
</definitions>