diff options
| author | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-24 08:14:57 +0000 |
|---|---|---|
| committer | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-24 08:14:57 +0000 |
| commit | 0eb20dc9b41da71b51540f75cfe955ed71420915 (patch) | |
| tree | 6c16302232c2b655cfd5ea406a9ac202814a8b35 /test/wsdl/document/document.wsdl | |
| parent | f54f1ce821930931cf490d6c7ac8f3f12baec3a1 (diff) | |
| download | ruby-0eb20dc9b41da71b51540f75cfe955ed71420915.tar.gz ruby-0eb20dc9b41da71b51540f75cfe955ed71420915.tar.xz ruby-0eb20dc9b41da71b51540f75cfe955ed71420915.zip | |
Mon Dec 24 17:06:37 2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
* {lib,test}/{soap,wsdl,xsd}: removed soap4r along to the discussion
at ruby-core and ruby-dev. see [ruby-core:12535], [ruby-dev:31969].
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14587 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/wsdl/document/document.wsdl')
| -rw-r--r-- | test/wsdl/document/document.wsdl | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/test/wsdl/document/document.wsdl b/test/wsdl/document/document.wsdl deleted file mode 100644 index fbf03fae8..000000000 --- a/test/wsdl/document/document.wsdl +++ /dev/null @@ -1,74 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<definitions - name="echo" - targetNamespace="urn:docrpc" - xmlns:tns="urn:docrpc" - xmlns:xsd="http://www.w3.org/2001/XMLSchema" - xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" - xmlns="http://schemas.xmlsoap.org/wsdl/"> - <types> - <xsd:schema elementFormDefault="unqualified" targetNamespace="urn:docrpc"> - <xsd:complexType name="echo_struct"> - <xsd:sequence> - <xsd:element minOccurs="0" maxOccurs="1" name="m_string" type="xsd:string" /> - <xsd:element minOccurs="0" maxOccurs="1" name="m_datetime" type="xsd:dateTime" /> - </xsd:sequence> - <xsd:attribute name="m_attr" type="xsd:string" /> - </xsd:complexType> - - <xsd:element name="echoele"> - <xsd:complexType> - <xsd:sequence> - <xsd:element minOccurs="0" maxOccurs="1" name="struct1" type="tns:echo_struct" /> - <xsd:element minOccurs="0" maxOccurs="1" name="struct-2" type="tns:echo_struct" /> - </xsd:sequence> - <xsd:attribute name="attr_string" type="xsd:string" /> - <xsd:attribute name="attr-int" type="xsd:int" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="echo_response"> - <xsd:complexType> - <xsd:sequence> - <xsd:element minOccurs="0" maxOccurs="1" name="struct1" type="tns:echo_struct" /> - <xsd:element minOccurs="0" maxOccurs="1" name="struct-2" type="tns:echo_struct" /> - </xsd:sequence> - <xsd:attribute name="attr_string" type="xsd:string" /> - <xsd:attribute name="attr-int" type="xsd:int" /> - </xsd:complexType> - </xsd:element> - </xsd:schema> - </types> - - <message name="echo_in"> - <part name="parameters" element="tns:echoele" /> - </message> - <message name="echo_out"> - <part name="parameters" element="tns:echo_response" /> - </message> - - <portType name="docrpc_porttype"> - <operation name="echo"> - <input message="tns:echo_in" /> - <output message="tns:echo_out" /> - </operation> - </portType> - - <binding name="docrpc_binding" type="tns:docrpc_porttype"> - <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" /> - <operation name="echo"> - <soap:operation soapAction="urn:docrpc:echo" style="document" /> - <input> - <soap:body use="literal" /> - </input> - <output> - <soap:body use="literal" /> - </output> - </operation> - </binding> - - <service name="docrpc_service"> - <port name="docprc_service_port" binding="tns:docrpc_binding"> - <soap:address location="http://localhost:17171/" /> - </port> - </service> -</definitions> |
