~ubuntu-branches/ubuntu/hardy/ruby1.8/hardy-updates

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): akira yamada
  • Date: 2007-03-13 22:11:58 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20070313221158-h3oql37brlaf2go2
Tags: 1.8.6-1
* new upstream version, 1.8.6.
* libruby1.8 conflicts with libopenssl-ruby1.8 (< 1.8.6) (closes: #410018)
* changed packaging style to cdbs from dbs.

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>